WPF controls include UserControls, which are composite collections of other controls, and CustomControls, which are controls built with WPF styles and templates.
For logging user actions in my WPF forms, I added some global event handlers I want to log exactly which …
c# wpf wpf-controls uielementThe labels in the example below (WPF/XAML) just parade off the screen, no wrapping occurs. Removing the orientation works, …
wpf xaml wpf-controls stackpanel wrappanelI am creating a WPF app with a list box that I am binding to project names. As a decorative …
wpf image listbox wpf-controls itemtemplateIn a WPF (or even a Windows 8 or 8.1 application) you have three possible ways to add a text in a …
c# wpf xaml wpf-controlsI have the following code: void Test() { currentImage.Source = GetBitmap(); RenderTargetBitmap rtb = new RenderTargetBitmap(100, 100, 96.0, 96.0, PixelFormats.Default); rtb.Render(currentImage); } This …
wpf wpf-controlsThis question is probably a duplicate, but I couldn't find it on SO. If I have a container Window, StackPanel, …
.net xaml wpf-controls stylesI am looking for a WPF control which is a hybrid of TreeView and DataGrid, something like the Visual Studio …
wpf datagrid controls treeview wpf-controlsI have a canvas and a red rectangle laid on it. Rectangle has a MouseDown event handler implemented: private void …
wpf canvas wpf-controls uielement wpf-positioningHow to control the Visibility of a textbox with radio button "IsChecked" property? I have a Two textbox's let say …
wpf wpf-controls bindingI simply want to open up the WPF Popup with a delay, sort of like a ToolTip. How can I …
wpf wpf-controls popup delay