Archives for: "December 2014"
MenuItem Icon - WPF
I tried the icon attribute in MenuItem. It doesn't work.Actually, you need to modify the header element like this: XML<MenuItem Name="GridButton" Visibility="Collapsed"… more »
WPF TextBlock Click Event
Actually, for WPF TextBlock Component, there is no click event. The best replacement is Mouse Down Event,
Like this:
Codetext1.MouseDown += text1_MouseDown; more »