Tagged Questions

6
votes
3answers
1k views

How to create a WPF UserControl with NAMED content

I have a set of controls with attached commands and logic that are constantly reused in the same way. I decided to create a user control that holds all the common controls and logic. However I also …
6
votes
1answer
642 views

Expose DependencyProperty

When developing WPF UserControls, what is the best way to expose a DependencyProperty of a child control as a DependencyProperty of the UserControl? The following example shows how I would currently …
5
votes
6answers
2k views

How do I add Dispose functionality to a C# UserControl?

I have a class which implements UserControl. In .NET 2005, a Dispose method is automatically created in the MyClass.Designer.cs partial class file that looks like this: protected override void …
4
votes
2answers
54 views

Allowing any property/attribute on a server/usercontrol

I've noticed that on most, if not all, standard web controls in the System.Web.UI.WebControls namespace, you can add any properties you want to them without crashing the page. Take the asp:Button …
4
votes
1answer
105 views

UserControl with Child Controls passed into a Repeater within the UserControl

I'm trying to achieve something along the lines of... UserControl (MyRepeater) <p>Control Start</p> <asp:Repeater id="myRepeater" runat="server" /> <p>Control …
3
votes
3answers
45 views

When to use UserControl vs. Control in Silverlight?

I'm just getting my feet wet in Silverlight, and don't really understand the differences and pros/cons of creating a UserControl vs. creating a Control for the same task (as in when you right click on …
3
votes
5answers
115 views

UserControls in Class Library

I am converting a 1.1 project to 2.0 and am having an issue with some User Controls. In the original project, there was a class library project and the website project. In the class library project, …
3
votes
3answers
450 views

WPF Window.Close() not triggering UserControl.Unloaded event

I have a Window that contains a custom UserControl. The UserControl needs to know when the Window containing it has been closed so that it can terminate a thread. My best guess as to how to …
3
votes
3answers
140 views

What is the easiest way to break up large XAML files in my application?

I recently discovered that I could make use of user controls to reduce the size of my main application's .xaml file. I am new to WPF and realized that my app's XAML is getting very long, very fast and …
3
votes
2answers
928 views

expose and raise event of a child control in a usercontrol in c#

Hi i have a UserControl which contains the textbox within, i wanted to access the textchanged event of the textbox, but in the event properties of the usercontrol i don't see the events for the …
3
votes
1answer
236 views

How can I refresh a ASP.NET MVC UserControl with jQuery?

Hi everyone! I have a UserControl that binds directly to database, that is, it's not rendered by any Action. It works independly. But, from times to times I have to refresh it to get new information …
3
votes
1answer
1k views

WPF, UserControl, and Commands? Oh my!

(This question is related to another one, but different enough that I think it warrants placement here.) Here's a (heavily snipped) Window: <Window x:Class="Gmd.TimeTracker2.TimeTrackerMainForm" …
3
votes
2answers
2k views

C# Scaling UserControl content to match users Dpi/Font Size

How do I get my OwnerDrawn UserControl to respect the users dpi (96/120/xxx) and/or font-size (normal, large, extra large)? Some people suggest to use the DpiX and DpiY properties on a Graphics …
3
votes
5answers
312 views

What’s your experience with using ASP.NET 2.0 webparts?

I would like to know your experience with ASP.NET webparts as a reusable component in your website. How useful did you find it? Did you find any serious issues with it? Would you recommend it using …
3
votes
2answers
678 views

How to reference a Master Page from a user control?

I'm looking for a way to (preferably) strongly type a master page from a user control which is found in a content page that uses the master page. Sadly, you can't use this in a user control: <%@ …

1 2 3 4 5 16 next
15 30 50 per page