Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
164 views

Execute Method in User Control MVVM

I am working on my first MVVM application and am having trouble getting it to work properly. In my main window, I have a button that executes a SQL command that returns a custom data table type ...
4
votes
1answer
90 views

How often is a UserControl handle recreated?

I looked up the UserControl.Load event for winforms (found here) on msdn and saw this caution message: The Load event occurs when the handle for the UserControl is created. In some ...
4
votes
4answers
147 views

How to avoid a large number of user controls on a form

I'm creating a user control that represents a list of other custom controls (they are pretty simple: include label, checkbox, icon and button). When I place it on a form it takes to long to load all ...
4
votes
3answers
2k views

How do I cancel event bubbling in ASP.net?

Is it possible to stop an ItemCommand or control event from bubbling up the control hierarchy? I have a control that contains child user controls that may or may not already have code that handles ...
3
votes
1answer
342 views

Inheritance with Silverlight User Control Partial Classes

I am trying to allow several classes to inherit a more general Silverlight user control to avoid redundancy in my code. The classes inherit the extended control, which then inherits the User Control ...
3
votes
2answers
181 views

How to show the PI tagsearch dialog and return tagname as string?

How can I show the PI Tag search dialog, and secondarily, how can I get the selected tag name from it?
3
votes
1answer
308 views

How to Convert an ASP.NET User control to Web/Composite Control?

Is there a simple process to convert an user control to a web/composite control?
2
votes
1answer
220 views

Abstract UserControl inheritance in Visual Studio designer

abstract class CustomControl : UserControl { protected abstract int DoStuff(); } class DetailControl : CustomControl { protected override int DoStuff() { // do stuff ...
2
votes
2answers
126 views

masterpage with usercontrol problem

I have a masterpage and 2 usercontrols(A.ascx & B.ascx) on this masterpage. In these one of them usercontrol(A.ascx) have another usercontrol(C.ascx). And I use this masterpage on default.aspx ...
2
votes
3answers
3k views

How to Instantiate User control in Master page cs file

I have added uc in contentplace holder of master page but how do you instantiate the user control in master page .cs file to make it visible when the master page loads
2
votes
2answers
675 views

Problem drawing graphics to user control

My application pops a form as a child of the main form. On the form is User Control with a Panel where Graphics are rendered. When executed from Visual Studio in debug mode the drawing is often ...
1
vote
1answer
73 views

How can I bind the display members of ListView columns in a user control to a custom object?

I have a UserControl, called b_StringBoolTemplate, that has a ListView. The ListView's items are bound to its DependencyProperty called Items. The ListView has two columns, one for a textbox and the ...
1
vote
2answers
69 views

Asp.Net get value from popup window in javascript

I am using a user control and I need to call a popup, which asks a question, and I need to send the response (true or false) back to the user control that invokes the popup. I declared a hidden field ...
1
vote
1answer
52 views

How to link buttons in child user-control to parent. C# / WPF

i have a WPF application that also uses a custom control i designed. in this custom control i have some buttons which i would like to give some actions in the parent window. how can i do that? ...
1
vote
1answer
25 views

Is there an equivalent to <%@ Reference Control=“~/MyControl.ascx”> to use in the code behind?

I would like to dynamically add a user control to my page. I have read you need to add the following line to the page before you can use LoadControl in the code behind. <%@ Reference ...
1
vote
2answers
85 views

Create ASP.Net-like user control in iOS framework

What I'm trying to do is something that I know is straight-forward in ASP.Net, and maybe I just need to adjust my thinking (I'm teaching myself development in iOS), but I cannot figure out how to ...
1
vote
1answer
41 views

UserControl twice inherited (Windows Forms)

I'm creating something like tool system similar to 3dsmax tool system. So, I have DockPanel, which is container for DockTool objects. But I would to have custom DockTool classes (DockTool base class ...
1
vote
1answer
119 views

SelectedValue property for a Autocomplete User Control in GridView

First off, forgive my English. I created one user control with Textbox and AutoCompleteExtender controls, and it's working fine. Now, I wanted to reflect my textbox similar to a dropdownlist. When ...
1
vote
1answer
100 views

Dynamically adding user control to page using place holder

I am attempting to add a user control to a place holder. I am placing the user control inside of a list item <li> userControl </li>, then placing the list item inside of an unordered list ...
1
vote
2answers
47 views

Accessing/Setting the property value of an object property of an ASP.NET User Control - Using Decalarative Syntax

I feel like I recall from days gone by an article explaining how to DECLARATIVELY set the value of the property of an object, exposed as the property of an ASP.NET User Control. My situation is that ...
1
vote
1answer
74 views

WPF - Lost ability to input date via keyboard?

I have a WPF user control that makes use of a ComboBox to contain a DatePicker. Unfortunately, when I put the DatePicker into the ComboBox, I seem to lose the ability to enter the date through the ...
1
vote
3answers
155 views

Why don't events of dynamically added user control fire on postback?

There are plenty of similar questions on SO (1, 2, 3, 4 etc) and on the web (1, 2 etc) but none of the corresponding answers clarifies my situation. I have a simple custom user control consisting of ...
1
vote
2answers
160 views

How to handle events on the dynamically loaded user control?

I have the user control that is loaded dynamically. When the user save the data by clicking on the Save button, a raise event is passed. Public Sub RaiseCloseEvent(ByVal sender As Object, ByVal e As ...
1
vote
2answers
32 views

How do I make an attribute on a custom user/server control be mandatory?

If certain attributes on built-in ASP.NET controls aren't specified, then an exception will be thrown. How do I do this on my custom user/server control?
1
vote
3answers
2k views

How do I get access to the QueryString in Windows Phone 7 from a user control

I have a simple user control in Windows Phone 7 and I want to get access to the querystring collection from the user controls Constructor. I have tried many ways and cannot seem to get acess to the ...
1
vote
2answers
31 views

Do you think it's a good idea to create a login box as a user control?

I'm starting out learning some ASP.Net programming and I'm going to be making a little community website for my friends and myself. I'm trying to pick up some good habits along the way. I was ...
1
vote
2answers
643 views

Overlay WPF controls

I've written an 'auto-suggest' textbox user control in WPF. It behaves a little bit like the 'To' list in Hotmail, allowing the user to enter a list of items, offering suggestions when it is able. ...
1
vote
7answers
1k views

User control always crashes Visual Studio

I'm trying to open a user control in one of our projects. It was created, I believe, in VS 2003, and the project has been converted to VS2008. I can view the code fine, but when I try to load the ...
1
vote
2answers
535 views

ASP.net user control nightmare

I have implemented a user control that I reuse on several pages. However, I have run into variety of issues such as session maintenance across pages, session clearing on navigating away - essentially ...
1
vote
2answers
545 views

UpdatePanel wrapped around a user control

I have a user control which contains some buttons and a placeholder. Those buttons cause controls to be added/removed from placeholder. Everything works fine. Now I want to put this user control in ...
1
vote
7answers
1k views

C# - Hiding all methods of the UserControl class from a derived one

I have a custom user control. Normally it inherites the UserControl class. But by this way it inherites all the public methods and properties of UserControl. But I want to hide all these and implement ...
1
vote
1answer
630 views

Removing certain properties in a user control, i.e. forcing one value and not editable in Design mode

How can I basically lock a default property so the user cannot edit it? For example, if I wanted to lock the BackColor property, how can I make it so the end user of the control can't edit it? This ...
1
vote
2answers
546 views

how to make User Controls to run on their own thread

how can i make a user control to run on its own thread ? e.g. by following code in a user control , coz user control uses main app thread it make main thread to sleep ...
1
vote
5answers
3k views

ASP.NET: Exposing a Web User Control's controls

I've created some Web User Controls (.ascx files) and dropped them into Pages. The user controls have some TextBoxes in them that I'd like the Page to be able to access directly. What's the easiest ...
1
vote
3answers
792 views

How to add Application Settings from a custom component (WinForms)

I have a WinForms user control that, when added to a form, should automatically add some elements to application settings. (Of course, the user should be able to customize/disable this behavior.) is ...
1
vote
2answers
2k views

Passing data from Controller to a User Control View with ASP.NET MVC

I have a View class (OrderView.aspx) which shows the details of an order (Account Name, Order Date) as well as a list of order lines via the Repeater control. Each order line is represented by a User ...
1
vote
1answer
671 views

How can I detect whether a user control is running in the IDE, in debug mode, or in the released EXE?

I have a user control that I'm building. It's purpose is to display the status of a class to the user. Obviously, this does not matter, and will slow things down when the control runs in the IDE, as ...
0
votes
3answers
55 views

Calling public method of user control from a parent form

I have form containing a Clear Button, usercontrol. The userControl has some text box and labels. On the click of clear button the entries in the textbox should get cleared. I have written a public ...
0
votes
0answers
9 views

Issue passing in CommandEventArgs with RaiseBubbleEvent

I have a button in a user control in the method I am calling RaiseBubbleEvent the OnBubbleEvent works fine if I do not set any values for the CommandEventArgs like RaiseBubbleEvent(null,null); But ...
0
votes
0answers
39 views

How to inherit UserControl form a abstract UserControl (without the designer messing up)?

I've got a Control (mySubControl) which inherits from a UserControl (myAbstractControl) which is abstract. Now inside the Designer of mySubControl, there's always an error saying: Can't create ...
0
votes
1answer
51 views

Display multiple images using folder browser dialog in WPF and how to import winform user control?

I just started with WPF and just now worked with open file dialog to display single image and worked perfect. This is for single Image: Dim ofdlg As New Microsoft.Win32.OpenFileDialog ...
0
votes
1answer
53 views

Hide child controls in UserControl with another control

I am writing a custom control deriving from UserControl. In it are some controls that I want to prevent from being accessible (some textboxes, comboboxes). They are to become available for interacting ...
0
votes
2answers
59 views

Pop up content in silverlight that appears over other controls

I have a Silverlight user control that is a textbox with a search button attached to it. When the search button is clicked then the grid with the search controls is made visible. The search controls ...
0
votes
0answers
48 views

user control (ascx) object is null when user control page_load event is called

Problem: PageHTMLTop is null/Nothing when using PlaceHolder web control for PageHTMLTop. Description of environment: I'm struggling to understand the order in which events are being called with ...
0
votes
1answer
63 views

UserControl ClientRectangle is smaller than it says

I am trying to make my UserControl with custom borders (I changed default border style to "none" in properties - I created control and I am invoking Graphics.DrawRectangle(...,ClientRectangle). And ...
0
votes
1answer
84 views

User Control vs Pages vs Window on WPF Browser Applications

Do you know what is the difference between: User Control, Pages and Windows on WPF Browser Applications. I've found information related with this, but all the time are about WPF Desktop application. ...
0
votes
1answer
73 views

Set Context key in jquery without auto complete behaviour id

I am working on usercontrol contains textbox with autocomplete extender, adding this user control in my page it works great till when i started to set context key in jquery now i'm in problem to set ...
0
votes
1answer
71 views

Text is not being entered in the box that has focus

I have a few instances of a user control that has just a TextBox to search for items. Now I see a very funny thing. The cursor is in one uc TextBox but the text I type appears in another uc TextBox. ...
0
votes
1answer
147 views

User Control dock inside Tab Page Windows Form

I have a TabControl. I add tab pages at runtime. On top of tabPage i add User Control at runtime. Inside user Control i have richtextbox. So its like ...
0
votes
0answers
18 views

What commands is used in a specific control?

Is there a way see what commands that is used in a control? e.g. That a TextBox is using ApplicationsCommands.Copy, ApplicationsCommands.Paste, etc

1 2