A UserControl is a separate, reusable input control that allows a user to interact with an application.
I am fairly new to WPF and I am having a problem with inheriting from a user control. I created …
wpf inheritance user-controlsI am just coming up to speed on WPF and would like to create a reusable WPF control. When I …
wpf user-controls custom-controlsI have a UserControl which contains 3 labels. I want to add an event for it, which occurs when the text …
c# winforms events user-controlsI'm trying to access a user control which is inside the control template of a content control. Specifically: <ContentControl …
wpf syntax user-controls code-behindCall me crazy, but I'm the type of guy that likes constructors with parameters (if needed), as opposed to a …
c# winforms parameters constructor user-controlsI have a class which implements UserControl. In .NET 2005, a Dispose method is automatically created in the MyClass.Designer.cs …
c# user-controls disposeThe type 'x' is defined in an assembly that is not referenced. You must add a reference to assembly 'abc123…
wpf user-controls .net-2.0 assemblies repeaterI have a UserControl which contains a TextBox. When my main window loads I want to set the focus to …
wpf focus user-controls focusmanagerI am using http://blogs.microsoft.co.il/blogs/justguy/archive/2009/01/19/wpf-combobox-with-checkboxes-as-items-it-will-even-update-on-the-fly.aspx?CommentPosted=true#commentmessage example to show selected …
wpf user-controlsTo implement a tab-based environment in WPF we need to convert our forms to user controls, however when doing this, …
c# wpf user-controls