WPF controls include UserControls, which are composite collections of other controls, and CustomControls, which are controls built with WPF styles and templates.
I am trying to create a user control within a WPF application that will serve as a DataTemplate for a …
wpf user-controls wpf-controls datatemplateIn standard WinForms development I would do the following: foreach (Control in groupBox1.Controls) { MessageBox.Show(c.Name); } How does …
c# .net wpf wpf-controls groupboxI working on a WPF project where I've over-ridden the CheckBox control for some special operations. That is working correctly. …
wpf wpf-controls controltemplateHow to set the background of TabItem? I tried the following code: <TabControl> <TabItem Header="Test" Background="…
wpf wpf-controls tabitemI want to add a little Button, which removes all the text in the TextBox. Is it possible to put …
wpf xaml wpf-controls controltemplateI want to do Header for multiple columns in WPF DataGrid. I tried with Header template but it will display …
wpf wpf-controls wpfdatagrid wpf-4.0How do I make a Canvas stretch fully horizontally with variable width? This is the parent Canvas, so it has …
wpf silverlight canvas wpf-controls stretchIs it possible to rearrange tab items in tab control in run time? For example I have 3 tab items which …
wpf wpf-controls wpftoolkitThe Application I am building an application which includes a range selector. This consists of two custom drawn Slider controls …
wpf wpf-controls scrollviewerI have defined the following DataTemplate for ListBox items in an external resource dictionary: <DataTemplate x:Key="MyListBoxItemTemplate" DataType="{…
wpf events wpf-controls frameworkelement