A UserControl is a separate, reusable input control that allows a user to interact with an application. User controls can be buttons, checkboxes, input text boxes, mice, keyboards, etc.

learn more… | top users | synonyms (3)

0
votes
2answers
20 views

asp.net user control is not displaying: Unrecognized namespace

This is how a register the control on the page: <%@ Register TagPrefix="uc" TagName="Pcp" Src="../../Controls/ClientPayement.ascx" %> And this is how I use it: <uc1:Pcp ID = ...
0
votes
1answer
24 views

is not allowed here because it does not extend class 'System.Web.UI.UserControl'

I have created a User Control that extends the DEVExpress ASPxGridView. My goal is to have this control be a template (style settings, shared properties) for all the times I would but the GridView ...
1
vote
2answers
18 views

Can I use User Controls in MVC 4 aspx View Engine?

I have a mature open source User controls used in my project for control panel for navigation. However, I am now on a new project using MVC 4. I noticed there is also aspx view engine provided, can I ...
0
votes
1answer
30 views

Retrieving html content of an aspx from the codebehind of a custom control

I have 2 files, Test.aspx and MyControl.ascx. In Test.aspx's html: <MyControl> <MyTemplate> <div>sample text, other controls</div> </MyTemplate> ...
0
votes
0answers
21 views

Add/Remove controls dynamically in .NET 2.0 CF Forms project

I am working on a mobile 2.0 project that is displaying a list of custom controls (each containing labels and check box). I want to find a better way to keep track of control positions. The controls ...
0
votes
1answer
23 views

Working with ListBox elements in a user control

I have a user control (ucMarket) which contains (for the purpose of simplicity) two controls: a ListBox (ucListBox) and a Label (ucLabel). I need to create multiple instances of that user control on ...
0
votes
0answers
19 views

Developing pager for winform application c#

i search google first to get any ready made sample for numeric pager for win form but unfortunately i found none. many exist for web application. so i have decided to develop my own. i have take one ...
1
vote
1answer
31 views

Execute function across user controls wpf c#

I have a MainWindow in my application. Within the MainWindow I dynamically host a user control (ucA). Within ucA i have another user control (ucB). When I click the save button on ucB, i need to ...
0
votes
0answers
14 views

wpf component refusing to be dragged and dropped in new wpf application

I want to use a wpf application (wpf1) as a base for other wpf applications. Therefore, I have tried to use wpf1 as a component for the others. When I create a new wpf application, wpf1 appears ...
1
vote
1answer
33 views

How to check wether a control has been loaded?

I am creating a UserControl, which has a SetCameraCount method that can be used before and/or after the control is actually displayed. If SetCameraCount is used before the control is displayed, then ...
1
vote
0answers
8 views

Access to PartialCachingControl.CachedControl before Add it

I have some User Controls loaded dynamically, this is my implementation: public class Form : UserControl { public int ID { get; set; } // other props also } public class ...
0
votes
1answer
12 views

Are my Visual Studio 2010 User Control Project Templates Missing? [closed]

Am I missing something here? I could have sworn I've created User Control projects before by simply selecting the template from this screen.
0
votes
1answer
34 views

Using Usercontrol inside Datatemplate

On a project I have started using Caliburn.Micro. Now I want to split a large UserControl into several smaller UserControls, so that I can use them inside of DataTemplates. EisenbergEffect suggests ...
-1
votes
1answer
11 views

Fix some controls inside when UserControl has scroll

I need to prevent scrolling entire UserControl. Instead I need to fix TextBox and Button at top but scroll GridView. Now it's scrolling entire user control.
0
votes
1answer
26 views

WPF Howto create a reusable composite component with configurable content?

I would like to create a component that is made up of an arbitrary control and a little button beside this control (same as in this example: http://putridparrot.com/blog/wpf-composite-control/). My ...
0
votes
0answers
15 views

WP8 C# how to call from a user control to its parent (ListBox)

I have a user control within a dataTemplate of a ListBox, and what I am trying to do is to let the user dismiss/remove this item from the listbox by dragging the user control side way. everything ...
0
votes
1answer
27 views

ASP.NET USERCONTROL WITH UPDATE PANEL INSIDE PAGE UPDATE PANEL

I have a master page with the Scrip manager. Have one page that use the master page and inside of this page i have an updatepanel. Inside this update panel i call a UserControl that have inside other ...
0
votes
1answer
25 views

Convert a Winform user control to WPF user control

I have a project with a lot of User Controls developed in Windows Forms. All the controls are drawn in the UserControl_Paint() function. I would like to take the advantage of WPF vector graphics and ...
1
vote
0answers
28 views

Linking two CheckedListBoxes to populate one based off the other

I am trying to link two checkedListboxes so that when you check an item on the first (which is a list of types), it will then populate the second with a list of categories within that type. This will ...
-2
votes
3answers
37 views

page get refresh evenif usercontrol validation is false

I have usercontrol in which I have written Custom-validation which checks whether the entered data in textbox is correct Location or not.On button click click I have checked (page.IsValid) bit, ...
0
votes
0answers
17 views

WPF Embedded User Controls

I have a User Control Named Switch and Another User Control Named Output the Output user Control is embedded inside the Switch Control ... now i need to hide for example the Parent Switch when ...
0
votes
2answers
50 views

WPF binding does not work with a UserControl

In my MainViewModel I have a property, which is set by the user. When a new value is received, I would like to update information at my UserControl. The problem is the binding does not work. The way I ...
0
votes
3answers
29 views

How to get Usercontrol object 'X' from X's Button(i.e. Button inside the X) onclick event

Hello guys i am working on a Windows Form application in .Net C#. Now i have a User control with a button inside it. however i had to write the on-click handler in the main form rather than inside ...
0
votes
1answer
15 views

Using a UserControl to Login and then enable menuStrip in Primary form

Ok so here is what i am trying to do. I have a Primary form in a C# desktop application in which i have a menuStrip and a splitContainer. On running the application, I am loading a UserControl named ...
0
votes
1answer
27 views

ContentControl with special border

I want to write a ContentControl to host other controls and give them a special border. So I added a new UserControl, made a ContentControl of it. It is having a grid, on the outer sides I want to ...
0
votes
1answer
28 views

Making properties available in datagridview usercontrol c#

Since a few days I've started coding a datagridview with paging. The paging itself works and calculates well. But now I've ran into a problem, I need properties from my custom made user control that ...
0
votes
1answer
19 views

User Control's dropdownlist select from added page with javascript

i want user control's dropdownlist selected item from page. when i try to get dropdownlist id it doesn't return correct id. Have you any idea about what i can get dropdownlist id? var e = ...
1
vote
1answer
38 views

Registering a user control always postback hen the form loaded

Hi all I have created a user control and registered it in web.config with some extension and calling it on the page where ever required. When I use that when ever the page get loaded the user control ...
0
votes
1answer
10 views

Hitting Enter on TextBox Submits

I am working on a user control (ascx) with an asp TextBox control. Whenever I press the enter key on the TextBox, the user control automatically submits it. I do not want that to happen. I want to ...
1
vote
2answers
26 views

jQuery UI Button Radio is Hard to Select Doing Long Mouse Clicks

We are just building a page with using jQuery UI radio buttons and we realized some strange behavior while doing UI testing. Some of the users have problems activing the radio buttons through ...
0
votes
0answers
13 views

UserControl - Show properties of inner-control in design-mode properties windows

I got a UserControl name UC1, which contain 2 controls (textbox, label). after that i create new windows form and drag the UC1 to it, how can i read and write ALL properties of textbox and label ...
0
votes
4answers
25 views

User control not displayed after postback

I have a home.aspx page, where i have two panel. In first panel I have dynamically bound a User Control (for displaying meiny at left side) and in second I have displayed pages. I bound user control ...
0
votes
2answers
41 views

Text Box User Control in C# Windows Application?

In my User Control I have a Text Box which does the validation to take only digits. I place this user control on my form but the Keypress event is not Firing in form.Following is the code in my user ...
0
votes
0answers
23 views

WPF - Need to bind a List of UserControls to another UserControl

I need some guidance on binding a List of UserControls to a another, different User Control. So I have this user control that is just an arrow with a label and a line: <UserControl ...
0
votes
1answer
21 views

Inlining a Public Variable in a User Control

I have a user control with a variable that I am trying to display inline in the Aspx page, but it always shows as empty. I've done this in other user controls and I'm not sure why it isn't working. ...
0
votes
1answer
25 views

User control property fails on set

I have a user control on a webform. I have public properties backed by viewstate on the user control. In the code-behind of the webform I attempt to set the public properties. When I debug through the ...
-1
votes
2answers
48 views

ASP Button Event not firing into UserControl UpdatePanel

I have a page with an UpdatePanel that calls a UserControl with another UpdatePanel. The LinkButton event into the user control UpdatePanel is not firing. <asp:UpdatePanel ID="updPost" ...
0
votes
0answers
33 views

how to disable popup behind background in windows phone 8?

I have one silverlight user control for generating popup in in my windows phone application. Its working fine but when i open popup at that time i want disable my background page. Because when popup ...
0
votes
1answer
40 views

Failed to get the values of dynamically added user controls in asp.net

This is in my user control <div class=" row-fluid"> <div class="span4" style="overflow: hidden;"> <asp:DropDownList ID="ddlAccountName" runat="server" ...
0
votes
1answer
29 views

How to bind value from Viewmodel to usercontrol in view

I have a window, that contains a usercontrol. The usercontrol have a dependency value, which I need to bind to a value on the windows viewmodel. But, no matter what I try, I end up with null. So, ...
1
vote
1answer
30 views

What event occurs immediately after a control is displayed for the first time?

I know there is UserControl.Load, which occurs before the control becomes visible for the first time. And I know there is UserControl.HandleCreated, which occurs when a handle is created for the ...
0
votes
1answer
22 views

Need to create an SSIS Package for users to directly modify a table

I need to allow a couple of users to modify a table in my database, preferably as part of an integrated package that then submits the changes into our live database. Please allow me to explain ...
0
votes
2answers
44 views

Display a busy indicator while waiting for an initialization of a usercontrol

My app needs to load a usercontrol in the MainWindow on startup. However the initialization of the usercontrol is slow. (not because of loading business data, I already separate the UI from business ...
0
votes
1answer
17 views

Silverlight usercontrol pain

I have usercontrol in the lib MyCompany.Silverlight.dll Namespace for it the same - MyCompany.Silverlight Everything works, i can drag-drop control from toolbar to navigation pane. Now i removed ...
0
votes
0answers
12 views

Page ValidationSummary include UserControl validators

I'm facing something 'fool', but i'm not sure the way to get this to work. I got a page ASP.NET WebForm, this page has a ValidationSummary and also has 2 UserControls. Theses UCs contains fields ...
0
votes
1answer
31 views

How do I bind TwoWay between a CheckBox in a UserControl and the ViewModel in the wider scope?

I have a UserControl that has a CheckBox on it. When I consume the UserControl on my main XAML page, I'd like to TwoWay bind a property on the control to a property on my ViewModel e.g. ...
0
votes
2answers
28 views

Updating one UpdatePanel from 2nd UpdatePanel

Is this a known behavior? and if it is how do I make it work? I have 2 update panels. Each one has a DropDownList control inside of it. I have 1 button that sets-up (binds) the first DropDownList. ...
0
votes
0answers
15 views

Capturing the Tag on a button click when the Button is part of a UI contol

I have created a user control which comprises a checkbox, a textbox and a button. I have then dragged this user control from my VS 2008 toolbar on to my main gui design page so that it is replicated ...
-2
votes
0answers
18 views

How to keep a directory structure always safe? [closed]

We have a Windows Server 2003. That works like domain controller and file server. Sometimes, we have problems with the directory structure of the works. Normaly, we use our own applications for ...
0
votes
2answers
36 views

WPF UserControl creating multiple layout choices

I have a UserControl that I have various properties defined, so I can customise it for each copy that's on the screen. I have a path that uses a LinearGradientBrush fill. At present this is hard coded ...

1 2 3 4 5 116