Tagged Questions

12
votes
1answer
328 views

Why does CompositionTarget.Rendering take EventArgs instead of RenderingEventArgs?

The CompositionTarget.Rendering event is a plain old EventHandler, with a plain old EventArgs. However, in real life, it apparently always gets an instance of RenderingEventArgs. So your event handler ...
3
votes
2answers
2k views

MVVM Passing EventArgs As Command Parameter

I'm using Microsoft Expression Blend 4 I have a Browser .., [ XAML ] ConnectionView " Empty Code Behind " <WebBrowser local:AttachedProperties.BrowserSource="{Binding Source}"> ...
1
vote
1answer
584 views

WPF: I don't understand class TextCompositionEventArgs

I don't understand the class TextCompositionEventArgs. There are members of type string named ControlText,SystemText,Text. Then there is a field TextConmposistion which itself contains the members ...
0
votes
3answers
286 views

How to translate CodeBehind WPF Events; Event, Handler, EventSetter to MVVM pattern?

I am trying to translate WPF CodeBehid events like Event, Handler, EventSetter to MVVM pattern. I am not allowed to use System.Windows.Controls since I am using MVVM. And I am also avoiding 3rd party ...