Tagged Questions

A UserControl is a separate, reusable part of a page that allows a user to interact with an application.

learn more… | top users | synonyms (1)

54
votes
13answers
56k views

“The Controls collection cannot be modified because the control contains code blocks”

I am trying to create a simple user control that is a slider. When I add a AjaxToolkit SliderExtender to the user control I get this (*&$#()@# error: Server Error in '/' Application. The ...
29
votes
8answers
16k views

WPF UserControl Design Time Size

When creating a UserControl in WPF, I find it convenient to give it some arbitrary Height and Width values so that I can view my changes in the Visual Studio designer. When I run the control, however, ...
29
votes
3answers
24k views

How to make user controls know about css classes in ASP.NET

Since there are no header sections for user controls in asp.net, user controls have no way of knowing about stylesheet files. So css classes in the user controls are not recognized by visual studio ...
27
votes
2answers
10k views

What is the difference between a User Control Library and a Custom Control Library?

I am just coming up to speed on WPF and would like to create a reusable WPF control. When I look at the options for creating projects in Visual Studio, I see "WPF User Control Library" and "WPF ...
27
votes
10answers
3k views

DesignMode with Controls

Has anyone found a useful solution to the DesignMode problem when developing controls? The issue is that if you nest controls then DesignMode only works for the first level. The second and lower ...
23
votes
4answers
12k views

Disposing WPF User Controls

I have created a custom WPF user control which is intended to be used by a third party. My control has a private member which is disposable, and I would like to ensure that its dispose method will ...
21
votes
10answers
11k views

Do you know any WPF based text editor control?

Note that I'm not looking for something based on TextBox or RichTextBox. What I'm interested in is a text editing control written from scratch using WPF typography features. Open source would be a ...
20
votes
11answers
14k views

WPF - Can't set focus to a child of UserControl

I have a UserControl which contains a TextBox. When my main window loads I want to set the focus to this textbox so I added Focusable="True" GotFocus="UC_GotFocus" to the UserControls definition and ...
19
votes
7answers
5k views

C# UserControl constructor with parameters

Call me crazy, but I'm the type of guy that likes constructors with parameters (if needed), as opposed to a constructor with no parameters followed by setting properties. My thought process: if the ...
18
votes
2answers
5k views

WPF ControlTemplate vs UserControl

I've recently made an UserControl, which took quite a long time, because I had to work with custom Dependency Properties and so on... Anyways, it was just a bunch of 3 controls: TextBox, Popup with ...
18
votes
5answers
8k 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 ...
16
votes
1answer
11k views

How can a WPF UserControl inherit a WPF UserControl?

The following WPF UserControl called DataTypeWholeNumber which works. Now I want to make a UserControl called DataTypeDateTime and DataTypeEmail, etc. Many of the Dependency Properties will be ...
16
votes
6answers
10k 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 ...
16
votes
6answers
2k views

Baseline snaplines in custom Winforms controls

I have a custom user control with a textbox on it and I'd like to expose the baseline (of the text in the textbox) snapline outside of the custom control. I know that you create a designer (inherited ...
15
votes
4answers
10k 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 ...
15
votes
11answers
16k views

User Controls not showing up in the toolbox

I have some UserControls that I created in ProjectA. I have ProjectB that has a windows form that I want to put the controls on. Both of these projects are in a single solution. There's a reference ...
14
votes
2answers
241 views

usercontrol hosted in IE renders as a textbox

On my ongoing saga to mirror the hosting of a legacy app on a clean box, I've hit my next snag. One page relies on a big .NET UserControl that on the new machine renders only as a big, greyed out ...
14
votes
4answers
9k views

A good WPF scrolling timeline control? (fancy datetime picker)

I'm looking for somthing I can use as a timeline control. A kind of "banner" the user can drag to the left or the right to go forward or backwards in time and then he or she should be able to select a ...
14
votes
8answers
2k views

ASP.NET Custom Controls - Composites

Summary Hi All, OK, further into my adventures with custom controls... In summary, here is that I have learned of three main "classes" of custom controls. Please feel free to correct me if any of ...
13
votes
3answers
2k views

MVP and multiple User Controls

I’m trying to use the MVP pattern and I’m running into a design problem. I’m developing an application that will have several UserControls. The UserControls themselves have nothing to do with one ...
13
votes
6answers
18k views

Binding Silverlight UserControl custom properties to its' elements

I'm trying to make a simple crossword puzzle game in Silverlight 2.0. I'm working on a UserControl-ish component that represents a square in the puzzle. I'm having trouble with binding up my ...
12
votes
2answers
11k views

Help with Zend ACL

I am currently working on a site that requires use of ACL and seen as I am using Zend it makes sense for my make use of there ACL class but I have little to zero idea of how to do this, I have read ...
11
votes
1answer
2k views

How to make Twitter app style Quick Actions on Android

Is there any code that gives an example about how to implement the Quick Actions and Popdown menu that is displayed in the Twitter for Android app?
11
votes
2answers
10k views

Silverlight UserControl Custom Property Binding

What is the proper way to implement Custom Properties in Silverlight UserControls? Every "Page" in Silverlight is technically a UserControl (they are derived from the UserControl class). When I say ...
11
votes
5answers
7k views

How do I get the HTML output of a UserControl in .NET (C#)?

If I create a UserControl and add some objects to it, how can I grab the HTML it would render? ex. UserControl myControl = new UserControl(); myControl.Controls.Add(new TextBox()); // ...something ...
11
votes
4answers
15k views

How to correctly inherit from a usercontrol defined in XAML in Silverlight

If I have a usercontrol (in Silverlight) that I've written, that uses XAML to define it's appearance, how can I make a customised version of it? i.e. I have MyControl.xaml & MyControl.xaml.cs ...
11
votes
2answers
4k 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 ...
10
votes
1answer
130 views

How can I define a property on an ASP.NET user or server control to allow multiple string values as nested tags with a custom tag name?

I need to write a user control that can be used with the following syntax: <quiz:Question runat="server"> <Answer>Foo</Answer> <Answer>Bar</Answer> ...
10
votes
6answers
734 views

Page_ClientValidate() object expected error, cant find the validator

I have a form HomePage.aspx containing an empty asp:Panel, a dropdownlist letting the user pick an SPFielType... on index changed, my HomePage.aspx.cs page will get the text selected and will load a ...
9
votes
9answers
370 views

Loading usercontrols on demand under jquery tabs

I have few jquery tabs on a usercontrol that loads a separate user control under each. Each user control is unique. It all works fine right now but the overall page response is too slow. In order to ...
9
votes
3answers
1k views

ASP.NET MVC - How to achieve reusable user controls and maintain DRY?

First post so please be gentle :) When creating user controls in ASP.NET MVC, what is the best way to structure the code so that the controllers that invoke views that use the user controls do not ...
9
votes
4answers
8k views

check if user is logged in in user control Asp.net MVC

how can i check if a user is logged in in user control with asp.net mvc usually on a view page i use this <% if (User.Identity.IsAuthenticated) {%> //Do something <% } %> but i ...
9
votes
3answers
10k views

WPF: template or UserControl with 2 (or more!) ContentPresenters to present content in 'slots'

I am developing LOB application, where I will need multiple dialog windows (and displaying everything in one window is not an option/makes no sense). I would like to have a user control for my window ...
9
votes
7answers
3k views

How do I share user controls between web applications in ASP.NET?

This question is a follow up to my question about sharing resources between web applications, because I have not yet found a good solution. I have a web application with user controls and resources ...
9
votes
4answers
13k views

UserControl's RenderControl is asking for a form tag in (C# .NET)

I asked how to render a UserControl's HTML and got the code working for a dynamically generated UserControl. Now I'm trying to use LoadControl to load a previously generated Control and spit out its ...
9
votes
4answers
1k views

How do you use usercontrols in asp.net mvc that display an “island” of data?

I am trying to find out how to use usercontrols in asp.net mvc. I know how to add a usercontrol to a view and how to pass data to it. What I haven't been able to figure out is how do you do this ...
8
votes
9answers
253 views

Visualisation of derived classes in C#

I have a base class (representing a real world container filled with small spheres) and some derived classes. This works just fine. My problem is how to do their visualisation. I have a UserControl ...
8
votes
1answer
321 views

How to “bubble” a Controls features when place in a custom UserControl

I'll try to explain what Im after. I dont know the technical term for it, so here goes: Example 1: If I place a LisView on a Form and add som columns I am able, in Design-Time, to click-and-drag the ...
8
votes
4answers
4k views

How to fix the flickering in User controls

In my application i am constantly moving from one control to another. I have created no. of user controls, but during navigation my controls gets flicker. it takes 1 or 2 sec to update. I tried to set ...
8
votes
3answers
774 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 ...
8
votes
9answers
2k views

MVVM - what is the ideal way for usercontrols to talk to each other

I have a a user control which contains sevral other user controls. I am using MVVM. Each user control has a corresponding VM. How do these user controls send information to each other. I want to avoid ...
8
votes
8answers
3k views

asp.net user control, getting htmlAnchor resolve to href=“#”

How do you get a server control HTMLAnchor to have href="#". It keeps resolving the "#" to the control path. <a href="#" runat="server" /> resolves to: <a href="../ControlPath/#"> I ...
8
votes
2answers
4k views

WPF UserControl in DataTemplate within ItemsControl - how to bind to parent of ItemsSource

The subject line says it all really! I have a user control which can be bound successfully to, say, a Fullname object - i.e. it works ok. I now need to show a list of these and, again, this works ok ...
8
votes
2answers
2k views

Why can't I use the Name attribute on UserControl in the same assembly?

When I created a WPF UserControl and tried to use it, I got the following compiler error: Because 'UserControl1' is implemented in the same assembly, you must set the x:Name attribute rather than the ...
8
votes
2answers
742 views

User Control Click - Windows Forms

I have a custom user control on my windows forms. This control has a few labels on it. I will be dynamically displaying an array of these controls on my form which will contain different bits of ...
8
votes
4answers
2k views

Visual Studio Designer is always trying to change my control

I have a somewhat complex UserControl, and Visual Studio 2008 is giving me a rather harmless annoyance when working with it. Every single time I open the control with the Designer, it decides to ...
8
votes
2answers
1k views

Themable User Controls in WPF

How can I create a UserControl in WPF that has a basic default style but can also easily themed when needed? Do you have some good guidelines, blog entries or example that explain this specific ...
8
votes
7answers
8k views

Programmatically adding Javascript File to User Control in .net

How do you add Javascript file programmatically to the user control? I want the user control to be a complete package - ie I don't want to have to add javascript that's related to the user control on ...
8
votes
4answers
5k views

MVC User Controls + ViewData

Hi im new to MVC and I've fished around with no luck on how to build MVC User Controls that have ViewData returned to them. I was hoping someone would post a step by step solution on how to approach ...
8
votes
6answers
8k views

How do I get the full url of the page I am on in C#

I need to be able to get at the full URL of the page I am on from a user control. Is it just a matter of concatenating a bunch of Request variables together? If so which ones? Or is there a more ...

1 2 3 4 5 70