Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example, I get this compiler warning, "The event 'Company.SomeControl.SearchClick' is never used." But I know that it's used because commenting it out throws me like 20 new warnings of XAML pages that are trying to use this event!

What gives? Is there a trick to get rid of this warning?

share|improve this question
1  
Can you please post an example? – John Saunders Jul 7 '09 at 16:18

4 Answers

up vote 38 down vote accepted

This appears to be warning 67 and can thus be suppressed with:

#pragma warning disable 67

Don't forget to restore it as soon as possible (after the event declaration) with:

#pragma warning restore 67


However, I'd check again and make sure you're raising the event somewhere, not just subscribing to it. The fact that the compiler spits out 20 warnings and not 20 errors when you comment out the event is also suspicious...

There's also an interesting article about this warning and specifically how it applies to interfaces; there's a good suggestion on how to deal with "unused" events.

share|improve this answer
That's exactly what I need! Thank you! The only difference is that I added my own comment beside the 67 so I knew what it was in the future. Here's "exactly" what I typed... #pragma warning disable 67 // event never used public event RoutedEventHandler SearchClick; #pragma warning restore 67 – sfjedi Jul 7 '09 at 16:38
That's a great link. Thanks. – Max Palmer Jan 25 '12 at 13:54

If you are forced to imlpement an event from an interface, that your implementation doesn't need you can do the following to avoid the warning.

public event EventHandler CanExecuteChanged { add{} remove{}}

share|improve this answer
+1 Great info, thanks! – Philip Daubmeier Apr 14 '12 at 12:57

The compiler is apparently not aware that it's being used in XAML code. Try suppressing the warning in your event definition.

Also, make sure you're actually raising the event somewhere.

share|improve this answer
That's what I thought too, so I moved the XAML code to the code behind and it showed the same warning! And yes, I'm 100% sure the event is being raised somewhere. I'm looking right at it. It's wired to a button. – sfjedi Jul 7 '09 at 16:44

You can supress individual warnings.

\Program.cs(13,20): warning CS0219: The variable 'foo' is assigned but its value is never used

In this case, CS0219 is the warning regarding variables being assigned but not used. You can either use the /nowarn:0219 flag, or add the error number in the properties pane for the project (under "Build", remember to remove the leading CS). Keep in mind the supresses all warnings of this class.

share|improve this answer
Good to know! Thanks :) – sfjedi Jul 7 '09 at 16:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.