active questions tagged usercontrol - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:54:39Z http://stackoverflow.com/feeds/tag/usercontrol http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1941056/adding-a-scriptreference-programmatically-during-async-postback 1 Adding a ScriptReference programmatically during async postback Oliver 2009-12-21T16:23:04Z 2009-12-22T05:28:45Z <p>Is it possible to add a new <code>ScriptReference</code> instance to the <code>ScriptManager</code> on the <code>Page</code> during an asynchronous postback so that subsequently I can use the referenced web service through client side script?</p> <p>I'm trying to do this inside a <code>UserControl</code> that sits inside a <code>Repeater</code>, that's why adding the ScriptReference programmatically during <code>Page_Load</code> does not work here.</p> <p>My goal is for my my UserControl to be as unobtrusive to the surrounding application as possible; otherwise I would have to statically define the ScriptReference in a <code>ScriptManagerProxy</code> on the containing <code>Page</code>, which is not what I want.</p> http://stackoverflow.com/questions/1930906/handling-user-abuse-in-rails 0 Handling user abuse in rails Kenji Crosland 2009-12-18T21:59:04Z 2009-12-18T23:19:30Z <p>I've been working on a web app that could be prone to user abuse, especially spam comments/accounts. I know that RECAPTCHA will take care of bots as far as fake users are concerned, but it won't do anything for those users who create an account and somehow put their spam comments on autopilot (like I've seen on twitter countless times).</p> <p>The solution that I've thought up is to enable any user to flag another user and then have a list of flagged users (boolean attribute) come up on a users index action only accessible by the admin. Then the users that have been flagged can become candidates for banning(another boolean attribute) or unflagging. Banned users will still be able to access the site but will have greatly reduced privileges. For certain reasons, I don't want to delete users entirely.</p> <p>However, when I thought of it, I realized that going through a list of flagged users to decide which ones should be banned or unflagged could be potentially very time consuming for an admin. Short of hiring someone to do the unflagging/banning of users, is there a more automated and elegant way to go about this?</p> http://stackoverflow.com/questions/1924149/usercontrols-asp-net-textbox-validator-controls 2 Usercontrols asp.net textbox/validator controls Mark 2009-12-17T19:53:15Z 2009-12-18T13:59:03Z <p>Hi all,</p> <p>I want to combine a textbox and several validator controls into 1 usercontrol. Is this possible with the intent to keep some fields dynamic like</p> <p>textbox:cssclass textbox:id textbox:width</p> <p>I'm asking this because i find myself putting a lot of validator controls for every (same textbox type) field in my form and it's getting kinda messy.</p> <p>Kind regards, Mark</p> http://stackoverflow.com/questions/1923176/when-to-use-usercontrol-vs-control-in-silverlight 3 When to use UserControl vs. Control in Silverlight? Dov 2009-12-17T17:06:00Z 2009-12-17T19:49:52Z <p>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 a selection in Expression Blend, for instance).</p> <p>It seems like selecting "Make Into Control" just creates a new template for the base type you specify, whereas creating a UserControl creates a whole new base class. Is that correct?</p> <p><img src="http://dl.dropbox.com/u/3083412/Silverlight%20Controls.png" alt="Screenshot"></p> <p>In this particular instance, I'm creating a custom text box control that only takes numbers, and divides itself into 3 sections, storing 3 values into separate properties as pictured below. In this particular case, which would be best?</p> <p><img src="http://dl.dropbox.com/u/3083412/Silverlight%20Custom%20Control.png" alt="Screenshot 2"></p> <p><strong>Update</strong> (Additional Question): Why can't I use Template Binding with a UserControl, but I can with a Control? That's one reason I thought that making a UserControl might not be the right decision.</p> http://stackoverflow.com/questions/1920761/relative-paths-issues-for-imagebutton-linkbutton 0 Relative paths issues for ImageButton / LinkButton YoungAngus 2009-12-17T10:24:35Z 2009-12-17T10:24:35Z <p>Hi </p> <p>I have recently migrated from .Net 1.1 to 3.5, and none of my ImageButton's or LinkButton's work. Not only do they not show the image, but when pressed, they redirect back to the root of the site; and the 'onClick' EventHandler doesn't fire.</p> <p>E.g. If I click an ImageButton on the page:</p> <blockquote> <p>http...../MyWebsite.ecom/Project1/frontend/MyShop/Products/Category1.aspx</p> </blockquote> <p>It will redirect to:</p> <blockquote> <p>http...../MyWebsite.ecom/Project1/frontend/Products/Product1.aspx</p> </blockquote> <p>This strips out the 'MyShop/Products' part of the url. The Product1.aspx is correct.</p> <p>Also to note: The ImageButton's / LinkButton's are inside a usercontrol (UC1); UC1 sits inside UC2; and UC2 is on the aspx page. </p> <p>ImageButton on UC1</p> <pre><code>&lt;asp:ImageButton id="btnAdd" runat="server" ImageUrl='../../images/buttons/product_buy.gif' CausesValidation="False"&gt;&lt;/asp:ImageButton&gt; </code></pre> <p>Any clues would be of great use.</p> <p>Regards</p> http://stackoverflow.com/questions/1920305/c-typed-t-usercontrol-in-design-mode-gives-error 2 C# typed <T> usercontrol in design mode gives error MysticEarth 2009-12-17T08:48:44Z 2009-12-17T09:54:43Z <p>I've got a custom class, which derives from <code>UserControl</code>. The code:</p> <pre><code>public partial class Gallery&lt;T&gt; : UserControl where T : class, IElement, new() </code></pre> <p>This classworks like it's supposed to work. But, when I try to enter design mode of the form which contains these <code>Gallery</code> classes, it gives me errors:</p> <blockquote> <ul> <li><p>Could not find type 'PresentrBuilder.Forms.Gallery'. Please make sure that the assembly that contains this type is referenced. If this type is a part of your development project, make sure that the project has been successfully built. </p></li> <li><p>The variable 'pictureGallery' is either undeclared or was never assigned.</p></li> </ul> </blockquote> <p>Note: (<code>pictureGallery</code> actually is a <code>Gallery&lt;PictureElement&gt;</code>).</p> <p>How can solve this? This way, I can't work in design mode which makes creating my userinterface quite hard.</p> http://stackoverflow.com/questions/1842619/cannot-see-named-silverlight-control-in-code 1 Cannot see named Silverlight control in code Alexandra 2009-12-03T20:18:32Z 2009-12-14T20:18:01Z <p>In my first few hours with Silverlight 3, as an avid WPF user, I am greatly disappointed at the many things it doesn't support. This seems like an odd issue to me and it's so generic that I cannot find anything online about it.</p> <p>I have the following XAML:</p> <pre><code>&lt;controls:TabControl x:Name="workspacesTabControl" Grid.Row="1" Background="AntiqueWhite" ItemsSource="{Binding Workspaces, ElementName=_root}"/&gt; </code></pre> <p>However, I cannot see the <code>workspacesTabControl</code> in code-behind. I thought maybe IntelliSense is just being mean and tried to go ahead and compile it anyway, but got an error:</p> <pre><code>Error 1 The name 'workspacesTabControl' does not exist in the current context </code></pre> <p>How do I access controls in code-behind?</p> <p>EDIT: I realized I've pasted the wrong error - I have two controls inside the UserControl called workspacesTabControl and menuStrip. I cannot get to either one of them by their name in the code-behind.</p> <p>Just in case, here is the XAML for the <code>menuStrip</code>:</p> <pre><code>&lt;controls:TreeView Grid.ColumnSpan="2" Height="100" x:Name="menuStrip" ItemContainerStyle="{StaticResource MenuStripStyle}" ItemsSource="{Binding Menu, ElementName=_root}"/&gt; </code></pre> <p>EDIT AGAIN:</p> <p>I'm not sure if this is helpful, but I've taken a look at the <code>InitializeComponent()</code> code and here's what I saw:</p> <pre><code>[System.Diagnostics.DebuggerNonUserCodeAttribute()] public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/SapphireApplication;component/SapphireMain.xaml", System.UriKind.Relative)); } </code></pre> <p>It seems that it simply loads the XAML when it runs (not before or during compilation) so the <code>menuStrip</code> and <code>workspacesTabControl</code> names don't actually get registered anywhere (as they usually are in WPF/win Forms). Could that attribute be a problem? And where do I get rid of this requirement for all the future UserControls I make?</p> http://stackoverflow.com/questions/1901281/how-can-i-refresh-a-custom-wpf-user-control-from-code-behind 0 How can I refresh a custom wpf user control from code behind? Edward Tanguay 2009-12-14T14:38:20Z 2009-12-14T15:23:44Z <p>I have this custom wpf user control:</p> <p><strong>ShowCustomer.xaml:</strong></p> <pre><code>&lt;UserControl x:Class="TestControlUpdate2343.Controls.ShowCustomer" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Grid&gt; &lt;TextBlock Text="{Binding Message}"/&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p><strong>ShowCustomer.xaml.cs:</strong></p> <pre><code>using System.Windows.Controls; using System; using System.ComponentModel; namespace TestControlUpdate2343.Controls { public partial class ShowCustomer : UserControl, INotifyPropertyChanged { #region ViewModelProperty: Message private string _message; public string Message { get { return _message; } set { _message = value; OnPropertyChanged("Message"); } } #endregion public ShowCustomer() { InitializeComponent(); DataContext = this; Message = "showing test customer at: " + DateTime.Now.ToString(); } #region INotifiedProperty Block public event PropertyChangedEventHandler PropertyChanged; protected void OnPropertyChanged(string propertyName) { PropertyChangedEventHandler handler = PropertyChanged; if (handler != null) { handler(this, new PropertyChangedEventArgs(propertyName)); } } #endregion } } </code></pre> <p>And I display it from this XAML:</p> <p><strong>Window1.xaml:</strong></p> <pre><code>&lt;Window x:Class="TestControlUpdate2343.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="clr-namespace:TestControlUpdate2343.Controls" Title="Window1" Height="300" Width="300"&gt; &lt;StackPanel HorizontalAlignment="Left" Margin="10"&gt; &lt;controls:ShowCustomer x:Name="ShowCustomerControl" Margin="0 0 0 10"/&gt; &lt;Button Content="Refresh Control" Click="Button_RefreshControls_Click" Margin="0 0 0 10"/&gt; &lt;/StackPanel&gt; &lt;/Window&gt; </code></pre> <p>And I would like to update the control (i.e. in this example show the current time) from my event handler in code behind:</p> <pre><code>using System.Windows; namespace TestControlUpdate2343 { public partial class Window1 : Window { public Window1() { InitializeComponent(); } private void Button_RefreshControls_Click(object sender, RoutedEventArgs e) { //ShowCustomerControl.Refresh()??? } } } </code></pre> <p><strong>How can I force a refresh of my custom control from code behind, or force it to reload somehow so when I click the button it shows the current time?</strong></p> http://stackoverflow.com/questions/1880318/silverlight-add-same-usercontrol-to-more-than-one-canvas 1 Silverlight: Add same UserControl to more than one Canvas eriksmith200 2009-12-10T11:17:38Z 2009-12-10T11:28:22Z <p>I have a bunch of UserControls ('MyUserControl') that I want to have a user manually add to one or more Canvases. One instance of a UserControl cannot be a child element of more than one container (otherwise a 'System.InvalidOperationException: Element is already the child of another element.' is thrown).</p> <p>Is there a way to do this without creating new (duplicate) instances of the MyUserControls? If not, what would be the best strategy to keep duplicate instances of the MyUserControls in sync?</p> http://stackoverflow.com/questions/1860224/wpf-control-design-guidance-timeline 1 WPF control design guidance - timeline ZombieSheep 2009-12-07T14:15:01Z 2009-12-07T20:10:37Z <p>I'm working on a control for one of our apps. The control shows the currently focused day as a gird, the X-axis being time of day. The Y axis doesn't have a scale as such, rather it will separate out the items to be displayed. The overall look of the control will be quite similar to a gantt chart, showing the times of day of various tasks. For a (very rough) idea, see the ascii (not) art below.</p> <pre><code>8 9 10 11 12 1 2 3 4 5 6 ----------------------------------------------------------------------------- | | | | | | | | | | | | ====================== | | | | | | | | | ====================== | | | | | | | | | | | ======== | | | | | | =========================================== | | | | | | | | | | | </code></pre> <p>I have the background grid worked out so that it is resizable, and has a "current time" indicator implemented as a vertical blue line to show where we are in relation to the tasks. When the control is resized, the current time indicator's position is recalculated to ensure it shows the right time.</p> <p>What I am now unsure of is how to implement the horizontal bars that represent the task items. I have a task entity with start time, end time, name and description and I'd like the control to contain a collection of these entities. I'd also like these entities to drive the display. </p> <p>My exposure to WPF is quite limited, but in the past my attempts at visualising a collection of objects has involved using a listbox and datatemplates. It would be great if it was possible to bind a collection to a stack panel or something similar so I could have semothing like this. (I though StackPabnel since it would handle vertical stacking for me)</p> <pre><code>&lt;UserControl declarations here... &gt; &lt;UserControl.Resources&gt; &lt;ObjectDataProvider x:Key="myCollection" /&gt; &lt;/UserControl.Resources&gt; &lt;Grid Name="myBackgroundGrid" Margin="0,0,0,0" ... &gt;stuff goes here to draw the background&lt;/Grid&gt; &lt;StackPanel ItemsSource="{Binding Source={StaticResource myCollection}}" /&gt; &lt;/UserControl&gt; </code></pre> <p>Can anyone tell me if what I thought of here is even possible, and (hopefully) give me some guidance as to how to achieve what I want to do.</p> <p>Thanks in advance.</p> <p>--EDIT--<br> The "control" that displays each task doesn't have to be anything more complicated than a line with a start and end time, and a tooltip of the name of the task. For the time being, I don't need to be able to drill into tasks, although this may come later.</p> http://stackoverflow.com/questions/796936/web-application-project-reference-tag 0 Web Application Project @Reference tag digiguru 2009-04-28T09:09:26Z 2009-12-07T19:17:50Z <p>I am converting a web site project to a web application project in VS 2008 and i've run across a query regarding dynamically loading user controls.</p> <pre><code>&lt;%@ Reference Control="~/UserControls/MyUserControl.ascx" %&gt; </code></pre> <p>and then in the page I simply called...</p> <pre><code>Dim ucSupplierDetails As New ASP.usercontrols_myusercontrol_ascx </code></pre> <p>Sadly when updateing to a web applciation project, this is no longer a valid line. Is there an alternative? </p> http://stackoverflow.com/questions/1858746/how-to-control-usercontrol-from-javascript 1 How to control usercontrol from javascript mavera 2009-12-07T09:04:19Z 2009-12-07T10:02:33Z <p>I have an usercontrol with an attribute targetUrl. I add this user control to a page and write targetUrl attribute from this page like below:</p> <pre><code>&lt;PBG:Modal ID="Modal1" runat="server" Height="180" Width="500" src="pop_adres_giris.aspx"/&gt; </code></pre> <p>This worked properly, but I want to change the targetUrl attribute from javascript. And I can't do it. I write code like below, but it didn't work.</p> <pre><code>var frm = document.getElementById('Modal1'); frm.targetUrl = 'pop_adres_giris.aspx'; </code></pre> <p>How can I do it?</p> http://stackoverflow.com/questions/1857400/too-much-control-is-bad-but-when 1 Too much control is bad. But when? Legend 2009-12-07T02:09:57Z 2009-12-07T02:45:58Z <p>I remember reading a law (well, maybe not exactly a law), but in software design, providing user with a lot of control without really giving him an option of a Basic and an Advanced Mode will sometimes backfire and make the user to end up not using any of the options in the first place because they are just too many of them. Did I read this correctly? If so, can someone point me to a more formal source?</p> http://stackoverflow.com/questions/1852196/running-a-wpf-user-control-or-managed-directx-control-on-jframe 0 Running a WPF User control or Managed Directx control on JFrame John 2009-12-05T13:26:52Z 2009-12-05T13:26:52Z <p>If I have developed a user control as mentioned in the tile and I use this <a href="http://www.ikvm.net/" rel="nofollow">http://www.ikvm.net/</a> to convert my .dll to a Jar file, Can I then embed that control on my JFrame? If so can you give an example please.</p> http://stackoverflow.com/questions/1844199/events-from-usercontrol-as-itemtemplate-in-wpf-listbox 0 Events from UserControl as ItemTemplate in WPF ListBox jastewart 2009-12-04T01:00:27Z 2009-12-04T01:07:45Z <p>In WPF, I have a ListBox with a UserControl as its ItemTemplate - all data shown ok. I have now added a text box for input in that user control. In an MVVM design, I want to take some action (re-calculate values) in the main window when the user edits the content of the text box in the user control, in the item template, in the list box. Question is - how to propagate that event up to the model? The user control is bound to a business object and I can see the value being changed there ok (INotifyPropertyChanged is implemented in the BO), but, how to get that event up to the model (as opposed to the code-behind)? Any examples or pointers most welcome!</p> <p>jas</p> http://stackoverflow.com/questions/1839859/silverlight-user-control-binding 1 Silverlight - User Control Binding unknown (yahoo) 2009-12-03T13:26:08Z 2009-12-03T14:02:09Z <p>Hello,</p> <p>I am learning Silverlight. In the process, I'm trying to build a custom user control. My ultimate goal is to be able to write the following statement in XAML:</p> <pre><code>&lt;my:CustomControl&gt; &lt;my:CustomControl.MainControl&gt; &lt;Canvas&gt;&lt;TextBlock Text="Hello!" /&gt;&lt;/Canvas&gt; &lt;/my:CustomControl.MainContent&gt; &lt;/my:CustomControl&gt; </code></pre> <p>The content of the control will be wrapped in a custom border. Once again, this is just a learning exercise. To append my border, I have create the following UserControl:</p> <pre><code>&lt;UserControl x:Class="CustomControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"&gt; &lt;Grid x:Name="LayoutRoot"&gt; &lt;Border&gt; &lt;!-- CustomControl Content --&gt; &lt;/Border&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>The code-behind for this file looks like the following:</p> <pre><code>public partial class CustomControl : UserControl { public UIElement MainContent { get { return (UIElement)GetValue(MainContentProperty); } set { SetValue(MainContentProperty, value); } } public static readonly DependencyProperty MainContentProperty = DependencyProperty.Register("MainContent", typeof(UIElement), typeof(CustomControl), new PropertyMetadata(null)); public CustomControl() { InitializeComponent(); } } </code></pre> <p>The thing I am having a problem with is getting the MainContent to appear in my CustomControl. I am confident that I am setting it properly, but I'm not sure how to display it. I really want it to be a DependencyProperty as well so I can take advantage of data binding and animations. </p> <p>How do I get the MainContent to appear in the CustomControl? Thank you</p> http://stackoverflow.com/questions/673536/wpf-cant-set-focus-to-a-child-of-usercontrol 2 WPF - Can't set focus to a child of UserControl Stimul8d 2009-03-23T14:16:30Z 2009-12-02T22:12:43Z <p>I have a <code>UserControl</code> which contains a <code>TextBox</code>. When my main window loads I want to set the focus to this textbox so I added <code>Focusable="True" GotFocus="UC_GotFocus"</code> to the <code>UserControl</code>s definition and <code>FocusManager.FocusedElement="{Binding ElementName=login}"</code> to my main windows definition. In the <code>UC_GotFocus</code> method i simply call <code>.Focus()</code> on the control i want to focus on but this doesn't work.</p> <p>All i need to do is have a <code>TextBox</code> in a <code>UserControl</code> receive focus when the application starts.</p> <p>Any help would be appreciated, thanks.</p> http://stackoverflow.com/questions/1833559/is-there-any-way-on-how-we-could-detect-and-get-the-attributes-which-do-not-have 0 Is there any way on how we could detect and get the attributes (which do not have properties) from a user control tag? Jronny 2009-12-02T15:18:08Z 2009-12-02T15:32:58Z <pre><code>&lt;uc1:UsercontrolTest ID="UsercontrolTest" runat="server" Hello="World"/&gt; </code></pre> <p>You see, Hello is not a property of UsercontrolTest class, but we need to detect and get <strong>that</strong> attribute. Are we allowed to do that? Thanks.</p> http://stackoverflow.com/questions/297759/system-io-filenotfoundexception-exception-when-attempting-to-drop-usercontrol-on 1 System.IO.FileNotFoundException exception when attempting to drop UserControl on Form in designer ashitanojoe 2008-11-18T03:12:42Z 2009-12-02T14:48:47Z <p>I have created a custom UserControl in Managed C++ that wraps some native code controls. I have confirmed the control works at runtime, and have been trying to make the control work with the Visual Studio designer by allowing drag and drop of the control from the designer toolbox.</p> <p>While I have successfully added the UserControl to the toolbox, nothing happens when I drag the control onto a windows form. To investigate the problem, I opened a second Visual Studio 2008 instance and attached its debugger to the devenv.exe instance where I am attempting to use the UserControl. After dropping the UserControl onto the windows forms, the Visual Studio debugger outputs a FileNotFoundException in mscorlib.dll when trying to load the module containing the UserControl.</p> <p>I noticed that the designer does not load the dll from the project's output path, but rather creates a copy of the assembly in the %UserData%\VisualStudio\9.0\ProjectAssemblies\*RandomFolderName* folder. However, none of the module's dependencies are copied, which I believe is the source of the FileNotFoundException.</p> <p>Any ideas how to resolve this issue? Ideally Vistual Studio would copy all the assembly's dependencies when copying the dll to the ProjectAssemblies folder, but I can't figure out any way to make this happen.</p> http://stackoverflow.com/questions/912683/how-to-raise-events-from-vb-net-classlibrary-usercontrol-activex-to-javascript 2 How to Raise Events from VB.Net ClassLibrary/UserControl (ActiveX) to JavaScript? Emily 2009-05-26T20:48:35Z 2009-12-02T07:57:19Z <p>I've created a VB.Net ClassLibrary with a UserControl in it. I can load it from an HTML page and call the methods that I created. This works as expected. I've tried several examples for how to raise an event from the VB code to the js caller, and none of them seem to work (I'm using IE7).</p> <p>What I'm doing:</p> <pre><code>Public Class ctrlABC Public Event TestEvent() </code></pre> <p>Then when I want to raise this event, I call:</p> <pre><code>RaiseEvent TestEvent() </code></pre> <p>In my JS file, I've tried the following:</p> <pre><code>&lt;OBJECT id="myControl1" name="myControl1" classid="ABC.dll#ABC.ctrlABC" width=400 height=400&gt;&lt;/OBJECT&gt; &lt;SCRIPT LANGUAGE=javascript FOR=myControl1 EVENT=TestEvent&gt; myControl1_TestEvent() &lt;/SCRIPT&gt; &lt;script&gt; function myControl1_TestEvent(){ alert("raised"); } &lt;/script&gt; </code></pre> <p>================== and then I tried ===================</p> <pre><code>&lt;OBJECT id="myControl1" name="myControl1" classid="ABC.dll#ABC.ctrlABC" width=400 height=400&gt;&lt;/OBJECT&gt; &lt;script&gt; function myControl1::TestEvent(){ alert("raised"); } &lt;/script&gt; </code></pre> <p>===========================</p> <p>but neither seems to get the event. Does anyone have any ideas? </p> <p>Thanks!</p> http://stackoverflow.com/questions/1434674/jquery-in-asp-net-user-control-in-c 0 JQuery in ASP.Net User Control in C# Russ Clark 2009-09-16T18:22:55Z 2009-12-02T05:37:09Z <p>I'm having problems using JQuery inside an ASP.Net User Control I've created a sample and here is the markup for my user control:</p> <pre><code>&lt;%@ Control Language="C#" ClassName="UC" AutoEventWireup="true" CodeFile="UC.ascx.cs" Inherits="UserControls_UC" %&gt; &lt;span id="Licenses"&gt;&lt;/span&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { var ctlID = $("span[id$='Licenses']"); ctlID.text = "Testing"; }); &lt;/script&gt; </code></pre> <p>If I include this script tag <code>&lt;script type="text/javascript" src="js/jquery-1.3.2.js" /&gt;</code> in the aspx file containing the user control to reference JQuery, nothing happens. If I don't include it, I get a JavaScript error dialog saying there was a runtime error and that an Object was expected. Any ideas what I may be doing wrong?</p> http://stackoverflow.com/questions/1800107/accessing-user-controlss-constituent-controls-from-a-hosting-web-page 0 Accessing user controls’s constituent controls from a hosting web page carewithl 2009-11-25T21:32:20Z 2009-12-01T19:30:32Z <p>Hi</p> <p><br></p> <p>I’ve read that user control’s constituent controls can be accessed only by user control and thus web page that hosts this user control cannot receive the events, call methods or set properties of these contained controls. </p> <p>But I’m not sure the above claim is true, since I was able to access ( from hosting web page ) ClickButton.Click event ( assume WebUserControl1 contains ClickButton control ):</p> <pre><code>public partial class Default2 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Button ClickButton = (Button)WebUserControl1.Controls[0]; ClickButton.Click += someClickHandler; } </code></pre> <p><br></p> <p>thanx</p> http://stackoverflow.com/questions/1493572/why-do-i-get-a-xamlparseexception-when-i-inherit-a-custom-usercontrol-in-another 0 Why do I get a XamlParseException when I inherit a Custom UserControl in another project? Edward Tanguay 2009-09-29T16:17:16Z 2009-12-01T19:00:04Z <p>In one project I have an Editor Class:</p> <pre><code>namespace TestXamlInherit234 { public class CustomerEditor : BaseEditor { public CustomerEditor() { TheMessage.Text = "changed222"; } } } </code></pre> <p>which inherits from a WPF User Control in <strong>another project</strong>:</p> <pre><code>using System.Windows.Controls; namespace Core { public partial class BaseEditor : UserControl { public TextBlock TheMessage { get { return TheMessage2; } } public BaseEditor() { InitializeComponent(); } } } &lt;UserControl x:Class="Core.BaseEditor" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="300" Width="300"&gt; &lt;Grid&gt; &lt;TextBlock x:Name="TheMessage2" Text="This is in the base editor"/&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>This works <strong>when both classes are in the same project</strong> but when they are in two <strong>different</strong> projects, I get a <strong>XamlParseException</strong> error.</p> http://stackoverflow.com/questions/1826455/can-i-create-a-asp-net-webform-or-user-control-output-from-an-xml-file-by-using 0 Can I create a asp.net webform -or user control- output from an XML file by using XSLT? burak ozdogan 2009-12-01T14:17:08Z 2009-12-01T14:20:03Z <p>Hi,</p> <p>Basically the thing I would like to achieve is to produce a form with some check boxes which will have their texts, default values from an xml file. As an example the block below should result 3 checkboxes (Use Sword, Use Shield, Use Spell) with the default values assigned. And when that form is posted back I can read them on the code behind of the apsx page.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;root&gt; &lt;checkBox&gt; &lt;id&gt;UseSword&lt;/id&gt; &lt;caption&gt;Use sword&lt;/caption&gt; &lt;defaultValue&gt;true&lt;/defaultValue&gt; &lt;/checkBox&gt; &lt;checkBox&gt; &lt;id&gt;UseShield&lt;/id&gt; &lt;caption&gt;Use shield&lt;/caption&gt; &lt;defaultValue&gt;false&lt;/defaultValue&gt; &lt;/checkBox&gt; &lt;checkBox&gt; &lt;id&gt;UseSpell&lt;/id&gt; &lt;caption&gt;Use spell&lt;/caption&gt; &lt;defaultValue&gt;false&lt;/defaultValue&gt; &lt;/checkBox&gt; &lt;/root&gt; </code></pre> <p>I have never worked with xslt so far. I kkow it is used to create various outputs like HTML. But I am not sure if I can also create server-side controls as an output by using XSLT templates.</p> <p>Is this possible?</p> <p>thanks!</p> http://stackoverflow.com/questions/1807657/wpf-usercontrol-or-datatemplate 1 WPF, UserControl or DataTemplate Zach 2009-11-27T09:29:03Z 2009-11-27T19:38:28Z <p>Hi,</p> <p>Recently I'm trying to reuse some UI elements in my application. When I started programming with WPF I'm told that DataTemplate is the best way to reuse UI elements. You can define a template for your data entity and use it everywhere. It sounds very good. However, I also found some disadvantages, especially when it is compared with UserControl. </p> <ol> <li>You cannot reuse a DataTemplate defined in another Window or UserControl. For example, if UserDataTemplate is define in WindowA.xaml, you cannot use it in WindowB.xaml. The solution might be that put the DataTemplate as a resource in a global Resource Dictionary.</li> <li>DataTemplate is hard to have some code behind. As mentioned in item 1, if you put the DataTemplate in a ResourceDictionary, there is no place to put your code by default. I googled the problem and yes, I found a trick to make the ResourceDictionary have a cs file. But it still has another problem.</li> <li><p>Another problem of DataTemplate is that you must be clear with the difference between the instance of DataTemplate itself and the instances of the content of DataTemplate. A DataTemplate will have only one "instance of DataTemplate", and may have many instances of the content of the DataTemplate. Let me explain it with an Example:</p> <pre><code>&lt;DataTemplate&gt; &lt;DataTemplate.Resources&gt; &lt;my:User x:key="User1"/&gt; &lt;/DataTemplate.Resources&gt; &lt;Grid MouseLeftButtonDown="OnMouseLeftButtonDown"&gt; &lt;Grid.Resources&gt; &lt;my:User x:key="User2"/&gt; &lt;/Grid.Resources&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; public partial class CodeBehind { Point mousePos = new Point(); <pre><code> private void OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { mousePos = e.Pos...; } </code></pre> } </code></pre></li> </ol> <p>The result will be that : User1 will only have one instance, however, a User2 instance will be created once the DataTemplate is applied, which means User2 will have many instances if the datatemplate is being applied many times. However, unlike UserControl, the field "mousePos" will NOT have many copies. If the DataTemplate is being applied 100 times, the mousePos won't have 100 copies, which mean the 100 Grids will use the only one mousePos field as the same time, which may cause problems. In UserControl, the field you defined will only be used by the control. 100 UserControl instances will have 100 field copies.</p> <p>Maybe I'm using DataTemplate in the wrong way. Any comment is appreciated.</p> <p>Best regards,</p> <p>Zach</p> http://stackoverflow.com/questions/1801343/silverlight-usercontrol-binding 0 Silverlight UserControl Binding Graeme G 2009-11-26T03:12:19Z 2009-11-26T12:41:49Z <p>Hi</p> <p>I have a simple User Control</p> <p>Xaml:</p> <pre><code>&lt;UserControl x:Class="GraemeGorman_Controls.Navigation.NavigationItem" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Border x:Name="borderLayoutRoot"&gt; &lt;TextBlock x:Name="textBlockCaption" Text="{Binding Caption}" /&gt; &lt;/Border&gt; &lt;/UserControl&gt; </code></pre> <p>Cs:</p> <pre><code>namespace GraemeGorman_Controls.Navigation { public partial class NavigationItem : UserControl { public static readonly DependencyProperty CaptionProperty = DependencyProperty.Register( "Caption", typeof (string), typeof (NavigationItem), new PropertyMetadata(new PropertyChangedCallback(OnCaptionChanged))); public string Caption { get {return (string)GetValue(CaptionProperty);} set {SetValue(CaptionProperty, value);} } public NavigationItem() { InitializeComponent(); } private static void OnCaptionChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { //null } } } </code></pre> <p>What my issue is, when I create an instance of the control the caption never shows - now i have tested the property in the OnCaptionChanged function using e.NewValue and it is the correct value. What is wrong with my binding?</p> <p>If I write in the code behind caption property for set</p> <pre><code>textBlockCaption.Text = value; </code></pre> <p>It appears fine...</p> <p>Any help appreciated</p> <p>Thanks Graeme</p> http://stackoverflow.com/questions/1799729/why-dont-asp-net-controls-expose-the-same-events-as 0 Why don’t Asp.Net controls expose the same events as…? carewithl 2009-11-25T20:27:42Z 2009-11-25T20:32:31Z <p>Hi <br></p> <p>User control receives same events as Page object and just like Page object also exposes Application, Session, Request and Response objects. I realize UserControl class and Page class both inherit from same TemplateControl class and for that reason share so many of same methods and events.</p> <p>But then why don’t Asp.Net controls such as TextBox, Label, GridView etc. also derive from same class as Page and UserControl classes – in other words, why would it be a bad idea for controls such as TextBox to have same events ( Page_Load etc ) as UserControl and Page classes do? </p> <p><br></p> <p>Thank you</p> http://stackoverflow.com/questions/1797537/wpf-design-usercontrol-datatemplate-problem 0 WPF design UserControl / DataTemplate problem stefan 2009-11-25T15:06:47Z 2009-11-25T15:42:44Z <p>Hi! I have a question.</p> <p>I have a WPF UserControl representing a Person with many fields. Some Persons can be a company. In this case I'd like to use another template with other fields. The code behind is the same, that's why I want it as a 1 control only with 2 templates. </p> <p>What I'd like to do is to be able to define these 2 templates <strong>with</strong> the VS designer support so I could easily change them.</p> <p>The problem ist that some elements have <strong>EventHandlers</strong> attached (Click...) and I can't image how I could resolve that when <strong>using DataTemplate</strong>. (Perhaps supposing the bubble events register the EventHandler on one of the parents ? and then look for the original source name ?) Or should I use 2 <strong>UserControls</strong> and then somehow merge them in my main UserControl ?</p> <p>Thank you in advance</p> http://stackoverflow.com/questions/544884/code-generation-for-all-clr-supported-language-using-a-codedomserializer 0 Code Generation for All CLR supported language using a CodeDomSerializer dattebayo 2009-02-13T06:06:20Z 2009-11-25T00:00:04Z <p>Hi All,</p> <p>I am implementing Code Generation for WindowsForm control at Design-Time, using a Custom CodeDomSerializer. </p> <p>Here is what I have. </p> <ul> <li>A user control i.e. MyControl written in C#. </li> <li>MyControl has a property MyControlProperty of type ObjectXXX that is accessible publicly.(like myControl.MyControlProperty). </li> <li>The type ObjectYYY has a public property PropertyXXX of type Collection. </li> <li>The ObjectXXX has a internal field of type ObjectYYY.</li> <li>The ObjectXXX should be initialized by passing Collection (which is nothing but ObjectYYY.PropertyXXX).</li> </ul> <p>The code generated should be as given in the code snippet below.</p> <pre><code>Line1. NamespaceX.NamespaceY.ObjectXXX x = new NamespaceX.NamespaceY.ObjectXXX(NamespaceX.NamespaceY.ObjectYYY.PropertyXXX); Line2. myControl.MyControlProperty = x; </code></pre> <p>I succeeded in generating the aforementioned code at Design-Time by writing a custom CodeDomSerializer FOR C# Language.</p> <p>But, if i use MyControl for developing an application in C++ Language, the DOT operator is serialized for both ScopeResolution and Pointer-To-Member operator.</p> <p>What I am doing for code in Line1 is,</p> <pre><code>string fullyQualifiedName = "NamespaceX.NamespaceY.ObjectYYY.PropertyXXX"; // HERE VARIABLE NAME IS HARDCODED WITH TWO TYPES OF OPERATORS CodeExpression[] parameters = new CodeExpression[] {new CodeVariableReferenceExpression(fullyQualifiedName);}; CodeStatement code = new CodeVariableDeclarationStatement(typeof(ObjectXXX), "objectXXX1", new CodeObjectCreateExpression(new CodeTypeReference(typeof(ObjectXXX)), parameters)); generatedCode.Add(code); //generatedCode has the final code </code></pre> <p>For Line2,</p> <pre><code>CodeExpression codeLhs = new CodeVariableReferenceExpression(myControlVariable + "." + "MyControlProperty"); // HERE Pointer-To-Member IS HARDCODED AS DOT CodeExpression codeRhs = new CodeVariableReferenceExpression("objectXXX1"); CodeAssignStatement codeAssignStmt = new CodeAssignStatement(codeLhs, codeRhs); generatedCode.Add(codeAssignStmt); //generatedCode has the final code </code></pre> <p>Obviously the C++ Designer generated code should have '::' operator(and not DOT) for the ScopeResolution and '->' for the Pointer-To-Member resolution. I was not able to figure out how to make the code serialization for any CLR supported language.</p> <p>How to solve this problem?</p> <p>-Thanks a bunch</p> <p>Dattebayo</p> http://stackoverflow.com/questions/1784303/c-usercontrol-constructor-with-parameters 2 C# UserControl constructor with parameters JustLooking 2009-11-23T16:32:53Z 2009-11-24T19:26:58Z <p>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 properties are required to actually construct the object, they should go in the constructor. I get two advantages:</p> <ol> <li>I know that when an object is constructed (without error/exception), my object is good.</li> <li>It helps avoid forgetting to set a certain property.</li> </ol> <p>This mindset is starting to hurt me in regards to form/usercontrol development. Imagine this UserControl:</p> <pre><code>public partial class MyUserControl : UserControl { public MyUserControl(int parm1, string parm2) { // We'll do something with the parms, I promise InitializeComponent(); } } </code></pre> <p>In designtime, if I drop this UserControl on a form, I get an exception:</p> <pre><code>Failed to create component 'MyUserControl' ... System.MissingMethodException - No parameterless constructor defined for this object. </code></pre> <p>It seems like, to me, the only way around that was to add the default constructor (unless someone else knows a way).</p> <pre><code>public partial class MyUserControl : UserControl { public MyUserControl() { InitializeComponent(); } public MyUserControl(int parm1, string parm2) { // We'll do something with the parms, I promise InitializeComponent(); } } </code></pre> <p>The whole point of not including the parameterless constructor was to avoid using it. And I can't even use the DesignMode property to do something like:</p> <pre><code>public partial class MyUserControl : UserControl { public MyUserControl() { if (this.DesignMode) { InitializeComponent(); return; } throw new Exception("Use constructor with parameters"); } } </code></pre> <p>This doesn't work either:</p> <pre><code>if (LicenseManager.UsageMode == LicenseUsageMode.Designtime) </code></pre> <p>Fine, moving along ...</p> <p>I have my parameterless constructor, I can drop it on the form, and the form's InitializeComponent will look like this:</p> <pre><code>private void InitializeComponent() { this.myControl1 = new MyControl(); // blah, blah } </code></pre> <p>And trust me, because I did it (yes, ignoring the comments Visual Studio generated), I tried messing around and I passed parameters to InitializeComponent so that I could pass them to the constructor of MyControl.</p> <p>Which leads me to this:</p> <pre><code>public MyForm() { InitializeComponent(); // Constructed once with no parameters this.myControl1 = new MyControl(anInt, aString); // Constructed a 2nd time, what I really want } </code></pre> <p>For me to use a UserControl with parameters to the constructor, I have to add a 2nd constructor that I don't need? And instantiate the control twice?</p> <p>I feel like I must be doing something wrong. Thoughts? Opinions? Assurance (hopefully)?</p>