Tagged Questions
The childcontrol tag has no wiki summary.
7
votes
2answers
6k 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 ...
2
votes
3answers
221 views
Make sure nested child control is visible
I have a utility routine that I call when validating user input in a dialog fails. It sets focus to the offending control, beeps and displays an appropriate message to the user. This works well as ...
2
votes
1answer
278 views
C#: How to suppress UserControl to give focus the first child-control?
I have a UserControl which can have childcontrol.
The usercontrol have the styles:
this.SetStyle(
ControlStyles.AllPaintingInWmPaint |
ControlStyles.OptimizedDoubleBuffer |
...
2
votes
1answer
310 views
LinkButton child controls render
I want to have a LinkButton that adds 'span' tag around the text.
protected override void Render(HtmlTextWriter writer)
{
Text = String.Concat("<span>", Text, "</span>");
...
1
vote
1answer
28 views
ASP.NET Button on Placeholder and Placeholder in an User Control (ascx) file Button event not fired
I am dynamically creating link buttons on user control using a place holder and the eventhandler attached to the link button click+=new Event(Button_Click) is not firing
Thanks in Advance
Code ...
1
vote
2answers
180 views
WPF Mouseover Trigger Effect for Child Controls
Lets say I have this bit of code:
<Window>
<Window.Resources>
<Color x:Key="MyColor"
A="255"
R="152"
G="152"
...
0
votes
2answers
46 views
Change child control (contentcontrol) property on mouseover of parent
I am new to WPF and am not able to figure out how to change the property of the child ContentControl of the Button control on mouse over. My code looks something like this:
<Button ...
0
votes
0answers
64 views
Render common view using multiple actions in asp.net MVC 3
I have an asp.net mvc 3 page. I want to show the list of users at fisrt time with pagination(which is fine, and done). but need to filter data according to selection of user group from list of groups.
...
0
votes
4answers
526 views
How make WPF Listbox child datatemplate controls select the ListBoxItem container when clicked?
I have a listbox and in the datatemplate I have an Expander.
If I click on the Expander Header, the expander expand the content zone but not make the parent ListBoxItem Selected.
If I click on the ...
0
votes
1answer
688 views
avoid update panel trigger by child control
By default the postback of child controls will trigger update panels' update.
How can I avoid the same?
Thanks in advance !
0
votes
2answers
134 views