I have created my own control in WPF. Initially I created it as a usercontrol but found the preferred way to do this is to create a class which inherits from control and then place my respective xaml
I\'ve got a user control with a control template to show validation errors, validation template: <ControlTemplate x:Key=\"TextBoxPropertyValidationTemplate\">
I want to make a bigger checkbox in WPF. I\'ve discovered that I need to d开发者_如何学Goo a control template, one example of which is found here:
I have the following xaml style in WPF, and I would like to开发者_高级运维 port it to silverlight.
I am trying to switch out the ContentPresenter of a ListBoxItem when it is selected, while using multiple DataTemplates to represent different types of data.
I\'m having a problem with ControlTemplates. When I try to put a image in the button, the image don\'t appear on the application. Here the style:
I am trying to write my own control template for a TabItem Header, and have got the basic layout to work but now I wish to apply styling to the content of the Header, for example to manipulate the siz
I want to add a little Button, which removes all the text in the TextBox. Is it possible to put this \"Remove\"-Button into the TextBox (like in the iPhone Textboxs)?
I am trying to construct a Control template from code behind. Things were working fine till recently I found that the code was throwing an exception because of escape characters in string. The error m
Hey, I am building a CustomControl that has a bunch of dependency properties and a few visual parts like, for example, a Canvas, a TextBox, etc.