active questions tagged custom-controls - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:44:39Z http://stackoverflow.com/feeds/tag/custom-controls http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1812255/blackberry-how-to-do-text-wrapping-in-listfield-with-checkboxes 0 Blackberry - How to do text wrapping in ListField with Checkboxes? Shreyas 2009-11-28T11:04:13Z 2009-11-28T12:03:18Z <p>Hi all,</p> <p>I m creating a ListField with Checkboxes from <a href="http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800345/How%5FTo%5F-%5FCreate%5Fa%5FListField%5Fwith%5Fcheck%5Fboxes.html?nodeid=1165752&amp;vernum=0" rel="nofollow">How To - Create a ListField with check boxes</a><br> But I m not getting how to wrap Text in a row in that ListField.<br> I referred the thread <a href="http://supportforums.blackberry.com/t5/Java-Development/Text-Wrapping-for-text-in-List-Field-items/td-p/232896" rel="nofollow">Text Wrapping for text in List Field items</a></p> <p>Here its written as </p> <blockquote> <p>If all you are displaying is text, then I would go with the approach suggested by rab.</p> </blockquote> <p>I m displaying Text only in ListField which I want to wrap if it doesnt fit within device screen.<br> But i m not getting "approach suggested by rab" in which How to calculate?</p> <blockquote> <p>String [] linesToDraw = calculate the number of lines depending on the row width </p> </blockquote> <p>I m stucked at this so any details on this issue ?</p> http://stackoverflow.com/questions/1808212/detailsview-not-retaining-mode-on-postback-within-custom-panel 0 DetailsView not retaining mode on postback, within custom Panel RB 2009-11-27T11:30:26Z 2009-11-27T12:01:48Z <p>Hi all,</p> <p>I have a custom Panel control which works like a regular Panel, but adds a heading to the top. The code for this panel is as follows :</p> <pre><code>Public Class GInfoPanel Inherits System.Web.UI.WebControls.Panel Protected WithEvents lblHeader As New Label() Protected WithEvents innerDiv As New HtmlGenericControl("div") Public Property HeaderText() As String Get Return lblHeader.Text End Get Set(ByVal value As String) lblHeader.Text = value End Set End Property Private Sub GInfoPanel_Init( _ ByVal sender As Object, ByVal e As System.EventArgs) _ Handles Me.Init innerDiv.Attributes("class") = "panel" lblHeader.CssClass = "panelHeader" 'I think it's the copying of the controls which prevents the ' 'DetailsView maintaining it's CurrentMode property.' For i As Integer = Controls.Count - 1 To 0 Step -1 'Add at 0 to maintain control order.' innerDiv.Controls.AddAt(0, Controls(i)) Next Controls.AddAt(0, lblHeader) Controls.AddAt(1, innerDiv) End Sub End Class </code></pre> <p>If I use a DetailsView control within this panel, I have the following problem. Clicking "Edit" will change it into Edit mode, but clicking Update or Cancel will have no effect, and it will remain in edit mode.</p> <p>The ASP code is :</p> <pre><code>&lt;uc1:GInfoPanel runat="server" HeaderText="Test Panel"&gt; &lt;asp:DetailsView ID="dv" runat="server" AutoGenerateEditButton="true" AutoGenerateRows="True"&gt; &lt;/asp:DetailsView&gt; &lt;/uc1:GInfoPanel&gt; </code></pre> <p>The code-behind is as follows :</p> <pre><code> Private Sub BindPerson() 'I use a BusinessObject class here, but I've replaced it with a 'standard .NET class for clarity. Dim oList As New List(Of Point) oList.Add(New Point(1, 3)) dv.DataSource = oList dv.DataBind() End Sub Private Sub dv_ModeChanging( _ ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewModeEventArgs) _ Handles dv.ModeChanging 'When the DetailsView is inside a GPanel, 'dv.CurrentMode is always Edit here. If e.CancelingEdit Then dv.ChangeMode(DetailsViewMode.ReadOnly) Else dv.ChangeMode(e.NewMode) End If dv.ChangeMode(e.NewMode) BindPerson() End Sub Private Sub dv_ItemUpdating( _ ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewUpdateEventArgs) _ Handles dv.ItemUpdating 'Not shown - update code. dv.ChangeMode(DetailsViewMode.ReadOnly) BindPerson() End Sub </code></pre> <p>One thing I've noticed, as I mention in the comments, is that when the Mode is changing it is always changing to Edit when inside the GPanel, which can't be right! I'm sure the problem is to do with the copying of the controls inside the GPanel - is there a better way to do this?</p> <p><strong>EDIT:</strong> Just thinking about this - is the control unable to maintain it's viewstate because it now has a new naming container? If so, how might I go about re-writing the GPanel to support this?</p> <p><strong>EDIT2:</strong> I fixed the problem by moving the GPanel control copying code into the Page_Load, rather than Page_Init. I'm obviously missing a piece of understanding here!</p> <p>Cheers,</p> <p>RB.</p> http://stackoverflow.com/questions/854590/registerclientscriptresource-ajax-update-panel 0 RegisterClientScriptResource + AJAX update panel schmoopy 2009-05-12T20:01:12Z 2009-11-27T03:00:03Z <p>Hello,</p> <p>I have a problem that is really making me feel dumb. I have a custom control that inherits textbox. This textbox (at least for this example) simply has a .js file that is embedded in the .dll.</p> <p>Long story short, works great when not in an AJAX update panel. So i did some research and found that instead of using: Page.ClientScript.RegisterClientScriptResource, i should use ScriptManger.RegisterClientScriptResource - i have done this in the overrdive render method, but the javascript still does not fire.</p> <p>Anyone know what im doing wrong?</p> <p>example: i have a folder in my project called Scripts - it contains myscript.js My Assembly is called Jim.Bob.Controls</p> <p>I add attributes to my controls ie: Attributes.Add("onclick", "Test2();");</p> <p>In the Override Render:</p> <pre><code>ScriptManager.RegisterClientScriptResource(this.Page, typeof(CustomTextBox), "Jim.Bob.Controls.Scripts.myscript.js"); </code></pre> <p>Yet i still get 'object expected' error.</p> <p>I need my textbox to work with and w/o AJAX. I imported System.Web.Extensions into my project to access ScriptManger</p> <p>Can someone please tell me what im doing wrong? Again, this whole thing worked fine w/o AJAX, i have put the necessary stuff into the AssemblyInfo.cs (WebResource:,,,,etc)</p> <p>Thanks in advance :-)</p> <p>--- UPDATE --- I reverted the control, trying it in a non AJAX web and i am having the same problem. Not sure why i have a problem, i have another custom control in the same assembly that is working just fine - have them setup the exact same way, only difference is the one that is working inherits WebControl, the one that is not inherits TextBox ... in the one that is working i emmit html like Go and do it Where the one that is NOT working i have Attributes.Add("onclick", "CustomFunction();");</p> <p>Also, if i do Attributes.Add("onclick", "alert('hello');"); it works fine.</p> <p>Sorry for such a long post.</p> http://stackoverflow.com/questions/1805686/how-to-make-a-control-resizable-by-the-user-at-runtime-net-winforms 0 How to make a control resizable by the user at runtime [.NET Winforms]? Romias 2009-11-26T21:17:56Z 2009-11-27T00:20:04Z <p>It is in Winforms.</p> <p>I have a UserControl that is anchored TOP, BOTTOM and LEFT. I would like to allow the user to drag its right border somehow and resize it horizontally.</p> <p>The control is placed right into the form, no panel or groupbox to place a "Splitter".</p> <p><strong>Any idea how to make a control resizable at runtime by the user?</strong></p> http://stackoverflow.com/questions/1794732/what-is-the-best-gui-library-for-blackberry-java-development 2 What is the best GUI library for blackberry java development? hip10 2009-11-25T04:58:03Z 2009-11-26T16:50:49Z <p>What do you think is the most comprehensive and stable GUI library for Blackberry java development? I am currently using J4ME, anyone has any other experiences? A good GUI library should also have support for like grid controls, etc.</p> http://stackoverflow.com/questions/861061/transparent-checkbox-in-custom-control-using-c 2 Transparent Checkbox in Custom Control Using C# codethis 2009-05-14T00:27:58Z 2009-11-26T04:49:43Z <p>Hello - I have created a custom control that gets highlighted when the mouse hovers over it. The custom control also has a checkbox. When the mouse goes over the checkbox, the highlighting of the custom control does not occur. I've tried using <strong>WS_EX_TRANSPARENT</strong> on the checkbox but it isn't working for me.</p> <pre><code> int cbStyle = GetWindowLong(CompletedCheckBox.Handle, GWL_EXSTYLE); SetWindowLong(CompletedCheckBox.Handle, GWL_EXSTYLE, cbStyle | WS_EX_TRANSPARENT); </code></pre> <p>How can I do this?</p> <p>Thanks</p> http://stackoverflow.com/questions/1792941/silverlight-3-custom-control-event-handling-navigation 0 Silverlight 3 Custom Control Event-handling Navigation NetWriter 2009-11-24T21:10:45Z 2009-11-24T21:10:45Z <p>I have a Silverlight 3 aplication, The solution (of 3 projects) looks Like this:</p> <p>ChartsCustomControl<br> &nbsp;&nbsp;&nbsp;PieChart.cs<br> SLGrid.Web<br> SLGrid<br> &nbsp;&nbsp;&nbsp;NavigationPage.xaml<br> &nbsp;&nbsp;&nbsp;Views<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PieChartPage.xaml<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PieChartPage.xaml.cs</p> <p>I'm using the navigation Frame control, and have a folder named Views for the different pages. PieChartPage.xaml.cs calls the pie chart custom control (ChartsCustomControl / PieChart.cs). </p> <p>Inside PieChart.cs, I have successfully attached an event handler (slice_MouseLeftButtonDown) to the pie slices so that a message box comes up showing the name of the pie slice that was clicked on. But instead of the message box, I need to pass that name back to PieChartPage.xaml.cs so I can act on that pie slice click from there.</p> <p>How do I do that?</p> http://stackoverflow.com/questions/1779022/xaml-binding-doesnt-seem-to-set-if-the-property-is-initialized-in-the-constructo 1 XAML binding doesn't seem to set if the property is initialized in the constructor archimed7592 2009-11-22T15:26:49Z 2009-11-24T18:55:50Z <p>Hello, everybody!</p> <p>I've run into a problem with data-binding inside control template while the property is initialized inside the constructor.</p> <p>Here is the show-case (you can also download <a href="http://www.filehosting.org/file/details/75794/WpfApplication5.zip" rel="nofollow">sample solution</a>):</p> <p>CustomControl1.cs</p> <pre><code>public class CustomControl1 : ContentControl { static CustomControl1() { DefaultStyleKeyProperty.OverrideMetadata( typeof(CustomControl1), new FrameworkPropertyMetadata(typeof(CustomControl1))); } public CustomControl1() { Content = "Initial"; // comment this line out and everything // will start working just great } } </code></pre> <p>CustomControl1 style:</p> <pre><code>&lt;Style TargetType="{x:Type local:CustomControl1}"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type local:CustomControl1}"&gt; &lt;Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"&gt; &lt;ContentPresenter /&gt; &lt;/Border&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>CustomControl2.cs:</p> <pre><code>public class CustomControl2 : ContentControl { static CustomControl2() { DefaultStyleKeyProperty.OverrideMetadata( typeof(CustomControl2), new FrameworkPropertyMetadata(typeof(CustomControl2))); } } </code></pre> <p>CustomControl style:</p> <pre><code>&lt;Style TargetType="{x:Type local:CustomControl2}"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type local:CustomControl2}"&gt; &lt;Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"&gt; &lt;local:CustomControl1 Content="{Binding Content, RelativeSource={RelativeSource AncestorType=local:CustomControl2}}" /&gt; &lt;/Border&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>Window1.xaml:</p> <pre><code>&lt;Window x:Class="WpfApplication5.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300" xmlns:local="clr-namespace:WpfApplication5"&gt; &lt;Grid&gt; &lt;local:CustomControl2 Content="Some content" /&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p><strong>So, the problem is</strong>: when you launch the app, the content of CustomControl1 appears to be "Initial" which is set by constructor, not the "Some content" string, which is supposed to be set by binding.</p> <p>When we remove the initialization from the constructor, the binding starts working.</p> <p>First of all, let me predict the answer: "you should set the initial value of a dependency property inside its metadata: either at the moment of registration or by means of metadata overriding capabilities". Yeap, you right, but the problem with this method of initialization is that the property is of collection type, so if I'll provide <code>new MyCustomCollection()</code> as a default value of the property, then every instance of <code>CustomControl1</code> will share the same instance of that collection and that's obviously not the idea.</p> <p>I've done some debugging on the problem, here are the results:</p> <ul> <li>Binding instance is created, when we put it in element-like syntax and assign <code>x:Name</code> to it, then it's accessible through <code>Template.FindName("PART_Binding", this)</code> inside <code>OnApplyTemplate</code>.</li> <li>Binding simply isn't set on the property: inside the same <code>OnApplyTemplate</code> the code <code>this.GetBindingExpression(ContentProperty)</code> return <code>null</code>.</li> <li>There is nothing wrong with the binding itself: inside <code>OnApplyTemplate</code> we can look it up and then we can simply set it on the property like this: <code>this.SetBinding(ContentProperty, myBinding)</code> - everything will work fine.</li> </ul> <p><strong>Can anyone explain how and why that happens?</strong></p> <p><strong>Does anyone have a solution for setting non-shared initial value for a dependency property, so the binding wouldn't break?</strong></p> <p>Thanks in advance!</p> <p><strong>UPD:</strong> The most weird thing is that debug output with highest trace-level is the same for both cases: either when the binding doesn't occur or if it does.</p> <p>Here it goes:</p> <pre><code>System.Windows.Data Warning: 52 : Created BindingExpression (hash=18961937) for Binding (hash=44419000) System.Windows.Data Warning: 54 : Path: 'Content' System.Windows.Data Warning: 56 : BindingExpression (hash=18961937): Default mode resolved to OneWay System.Windows.Data Warning: 57 : BindingExpression (hash=18961937): Default update trigger resolved to PropertyChanged System.Windows.Data Warning: 58 : BindingExpression (hash=18961937): Attach to WpfApplication5.CustomControl1.Content (hash=47980820) System.Windows.Data Warning: 62 : BindingExpression (hash=18961937): RelativeSource (FindAncestor) requires tree context System.Windows.Data Warning: 61 : BindingExpression (hash=18961937): Resolve source deferred System.Windows.Data Warning: 63 : BindingExpression (hash=18961937): Resolving source System.Windows.Data Warning: 66 : BindingExpression (hash=18961937): Found data context element: &lt;null&gt; (OK) System.Windows.Data Warning: 69 : Lookup ancestor of type CustomControl2: queried Border (hash=11653293) System.Windows.Data Warning: 69 : Lookup ancestor of type CustomControl2: queried CustomControl2 (hash=54636159) System.Windows.Data Warning: 68 : RelativeSource.FindAncestor found CustomControl2 (hash=54636159) System.Windows.Data Warning: 74 : BindingExpression (hash=18961937): Activate with root item CustomControl2 (hash=54636159) System.Windows.Data Warning: 104 : BindingExpression (hash=18961937): At level 0 - for CustomControl2.Content found accessor DependencyProperty(Content) System.Windows.Data Warning: 100 : BindingExpression (hash=18961937): Replace item at level 0 with CustomControl2 (hash=54636159), using accessor DependencyProperty(Content) System.Windows.Data Warning: 97 : BindingExpression (hash=18961937): GetValue at level 0 from CustomControl2 (hash=54636159) using DependencyProperty(Content): 'Some content' System.Windows.Data Warning: 76 : BindingExpression (hash=18961937): TransferValue - got raw value 'Some content' System.Windows.Data Warning: 85 : BindingExpression (hash=18961937): TransferValue - using final value 'Some content' </code></pre> <p><strong>UPD2:</strong> added a link to the <a href="http://www.filehosting.org/file/details/75794/WpfApplication5.zip" rel="nofollow">sample solution</a></p> http://stackoverflow.com/questions/1785812/the-page-lifecycle-for-controlsorder-contructed-from-a-page 1 The page lifecycle for controls(order contructed from a page) earlz 2009-11-23T20:44:16Z 2009-11-23T21:14:29Z <p>Ok, I have not been able to really find an answer to this on the internet.. Maybe someone here can help me.</p> <p>For example, lets say I have a page and 2 custom controls on that page. During what event on page do these controls get constructed. When does their page_init get called? </p> <p>Also, for these 2 custom controls, do they both get constructed before either of the page_init events get called?</p> <p>I've done some testing with a debugger and such, but I'm wanting a definite answer to these questions. I'm not wanting to make code that works only sometimes.</p> http://stackoverflow.com/questions/1777440/wpf-how-to-accept-both-string-and-frameworkelement-in-dependency-property-like 2 WPF: How to accept both string and FrameworkElement in dependency property (like wpf Label does)? Tomáลก Kafka 2009-11-22T01:19:28Z 2009-11-22T07:38:59Z <p>Hi, I am creating a custom WPF control that should have several content slots. I'd like the user to be able to use either string, or a FrameworkElement as a value of property, for example:</p> <pre><code>&lt;!-- MyHeading is a string --&gt; &lt;MyControl MyHeading="Hello World" /&gt; &lt;MyControl&gt; &lt;!-- MyHeading is a FrameworkElement --&gt; &lt;MyControl.MyHeading&gt; &lt;Expander Header="Hello"&gt; World &lt;/Expander&gt; &lt;/MyControl.MyHeading&gt; &lt;/MyControl&gt; </code></pre> <p>I know that WPF ContentControl does this (accepts both strings and other elements), and I know that it has something to do with <code>TypeConverter</code> attribute (<a href="http://blogs.windowsclient.net/rob%5Frelyea/archive/2008/04/10/strings-to-things-or-how-xaml-interprets-attribute-values.aspx" rel="nofollow">partially explained here</a>), but I tried to look at ContentControl, Label, TextBlock and other controls in Reflector, and didn't find any TypeConverter atrribute there, and googling didn't help.</p> <p>I first tried to implemet it like this, but it obviously doesn't know about how to convert string to FrameworkElement, and throws exception during control's initialization:</p> <pre><code>public FrameworkElement Heading { get { return (FrameworkElement)GetValue(HeadingProperty); } set { SetValue(HeadingProperty, value); } } // Using a DependencyProperty as the backing store for Heading. This enables animation, styling, binding, etc... public static readonly DependencyProperty HeadingProperty = DependencyProperty.Register("Heading", typeof(object), typeof(DialogControl), new UIPropertyMetadata(new FrameworkElement())); </code></pre> <p>Then I tried to hack it like this:</p> <pre><code>public object Heading { get { return (object)GetValue(HeadingProperty); } set { if (value is string) { var tb = new TextBlock(); tb.Text = (string) value; tb.FontSize = 20; SetValue(HeadingProperty, tb); } else if (value is FrameworkElement) { SetValue(HeadingProperty, value); } else throw new ArgumentOutOfRangeException("Heading can take only string or FrameworkElement."); } } // Using a DependencyProperty as the backing store for Heading. This enables animation, styling, binding, etc... public static readonly DependencyProperty HeadingProperty = DependencyProperty.Register("Heading", typeof(object), typeof(DialogControl), new UIPropertyMetadata(null)); </code></pre> <p>but it is pretty ugly and still doesn't instantiate :(.</p> <p>Anyone knows how to do it? Thanks for your time!</p> http://stackoverflow.com/questions/1766842/placing-widget-in-listbox-dropdown-in-gwt 0 placing widget in listbox/dropdown in gwt special0ne 2009-11-19T21:54:19Z 2009-11-22T04:54:13Z <p>hi, i am using gwt to build my web site. i would like to create a dropdown/listbox that contains no just text but also images, meaning that in the drop down there will be a what ever widget that ill create.</p> <p>please advise jaimon</p> http://stackoverflow.com/questions/337181/how-do-i-create-a-custom-wpf-control-like-a-cartoon-bubble-with-constant-corners 8 How do I create a custom WPF control like a cartoon bubble with constant corners Frederic 2008-12-03T14:00:17Z 2009-11-21T17:57:26Z <p>I need to create a rectangle bubble with rounded corners with text inside, like a cartoon speech bubble. I need the bubble to expand horizontally and vertically depending on the size of the text it contain. I would like the speech arrow and the radius of the rounded corners to remain constant.</p> <p>I could simply use a path to create my bubble, but I can't resize the bubble and keep the corners radius and arrow constant... it's the whole path that will be resized.</p> <p>I'd appreciate that some one could point me in the right direction.</p> <p><img src="http://img258.imageshack.us/img258/5088/bubblesstackoverflowbh4.gif" alt="alt text" /></p> <p>Here is the final version of the cartoon bubble user-control. I've added a rectangle without a stroke to Jobi Joy's version to hide the end of path lines, instead of trying to make then appear flush with the rectangle.</p> <pre><code>&lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="*"/&gt; &lt;RowDefinition Height="40"/&gt; &lt;/Grid.RowDefinitions&gt; &lt;Rectangle Fill="#FF686868" Stroke="#FF000000" RadiusX="10" RadiusY="10"/&gt; &lt;Path Fill="#FF686868" Stretch="Fill" Stroke="#FF000000" HorizontalAlignment="Left" Margin="30,-5.597,0,-0.003" Width="25" Grid.Row="1" Data="M22.166642,154.45381 L29.999666,187.66699 40.791059,154.54395"/&gt; &lt;Rectangle Fill="#FF686868" RadiusX="10" RadiusY="10" Margin="1"/&gt; &lt;TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="25" Text="Hello World" TextWrapping="Wrap"/&gt; &lt;/Grid&gt; </code></pre> http://stackoverflow.com/questions/1769755/blackberry-how-to-resize-image 1 Blackberry - how to resize image? Rohit Roy 2009-11-20T11:02:31Z 2009-11-20T17:04:11Z <p>I wanted to know if we can resize an image. Suppose if we want to draw an image of 200x200 actual size with a size of 100 x 100 size on our blackberry screen.</p> <p>Thanks</p> http://stackoverflow.com/questions/1761185/blackberry-how-to-animate-custom-field 0 Blackberry - how to animate Custom Field? Rohit Roy 2009-11-19T05:59:29Z 2009-11-20T16:08:37Z <p>I have created a custom field class "Seek" to draw a fillrectangle.</p> <pre><code>class Seek extends Field { int fill; protected void layout(int width, int height) { setExtent(320, 5); } protected void paint(Graphics graphics) { graphics.setColor(Color.RED); graphics.fillRect(0, 0, fill, 5); } protected void setValue(int value) { fill = value; } } </code></pre> <p>And I have created another class Test seek to set the fill value using a timer</p> <pre><code>public class TestSeek extends UiApplication { public static void main(String[] args) { TestSeek gbResults = new TestSeek(); gbResults.enterEventDispatcher(); } private TestSeek() { pushScreen(new ProgressScreen()); } } class ProgressScreen extends MainScreen { Timer timer = new Timer(); int i = 80; Seek SeekField = new Seek(); public ProgressScreen() { add(SeekField); timer.schedule(new RemindTask(), 100, 10); } class RemindTask extends TimerTask { public void run() { if (i &lt; 320) { i += 1; SeekField.setValue(i); } else timer.cancel(); } } } </code></pre> <p>But I am unable to animate filling the rectangle.</p> http://stackoverflow.com/questions/1762326/windows-mobile-how-to-hide-size-property-on-a-custom-control 0 Windows Mobile: how to hide Size property on a Custom Control. VansFannel 2009-11-19T10:30:34Z 2009-11-19T11:57:10Z <p>Hello!</p> <p>I'm developing a Windows Mobile WinForm app with C# and .Net Compact Framework 2.0 SP2.</p> <p>I have a control that inhertit from System.Windows.Form.Control that I want to make private Size property. How can I do that?</p> <p>I've tried this:</p> <pre><code>new private Size; </code></pre> <p>But it doesn't compile.</p> <p>Any idea?</p> http://stackoverflow.com/questions/1761171/iphone-bpm-tempo-button 1 iphone BPM tempo button Aran Mulholland 2009-11-19T05:54:10Z 2009-11-19T07:06:59Z <p>i want to create a button that allows the user to tap on it and thereby set a beats per minute. i will also have touches moved up and down on it to adjust faster and slower. (i have already worked out this bit).</p> <p>what are some appropriate ways to get the times that the user has clicked on the button to get an average time between presses and thereby work out a tempo.</p> http://stackoverflow.com/questions/1750536/is-there-a-user-control-library-project-type-in-vs-2010 0 Is there a User Control Library project type in VS 2010 ace 2009-11-17T17:42:37Z 2009-11-17T17:49:38Z <p>I was looking for it all night, but it seems that the project type is not on vs 2010.</p> <p>But the main problem is, I want to make a custom control (or a user control compiled to a dll, if vs 2010 does not have the custom control library feature). Unluckily, I was not able to find any article for 2010 but only for 2008, which is pretty much different from the 2010 IDE.</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa479318.aspx#customcontrolfromusercontrol%5Ftopic3" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa479318.aspx#customcontrolfromusercontrol%5Ftopic3</a></p> <p>How will I be able to create a custom control in vs2010? Thanks in advance.</p> http://stackoverflow.com/questions/1750116/net-compact-framework-2-0-autosize-label 1 .NET Compact Framework 2.0 AutoSize Label. VansFannel 2009-11-17T16:36:31Z 2009-11-17T16:40:32Z <p>Hello.</p> <p>I trying to make a Control that inherits from System.Windows.Form.Label that can resize to fit its text.</p> <p>I'm trying to override OnTextChanged method to use System.Drawing.Graphics.MeasureString to know the new size of the control, but I don't know how to obtain Graphics on OnTextChanged method?</p> <p>Any advice?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1747487/why-does-this-customvalidator-not-fire 0 Why does this CustomValidator not fire? dittodhole 2009-11-17T09:03:30Z 2009-11-17T09:27:04Z <pre><code>public sealed class IntegerBox : TextBox { #region constants private const string RangeConstraintValidatorID = "rangeConstraintValidator"; #endregion #region child controls private readonly CustomValidator _rangeConstraintValidator = new CustomValidator { EnableClientScript = false, Enabled = true, ErrorMessage = "ErrorMessageForRangeConstraintFailed", Display = ValidatorDisplay.None, SetFocusOnError = true, ValidateEmptyText = true }; #endregion #region life cycle protected override void CreateChildControls() { this.Controls.Clear(); this._rangeConstraintValidator.ID = this.ClientID + this.ClientIDSeparator + RangeConstraintValidatorID; this._rangeConstraintValidator.ServerValidate += this.ValidateRangeConstraint; this.Controls.Add(this._rangeConstraintValidator); base.CreateChildControls(); } #endregion /// &lt;summary&gt; /// Gets or sets the number. /// &lt;/summary&gt; /// &lt;value&gt;The number.&lt;/value&gt; public int? Number { get { /* MAGIC */ } set { /* MAGIC */ } } public override string ValidationGroup { get { this.EnsureChildControls(); return base.ValidationGroup; } set { this.EnsureChildControls(); base.ValidationGroup = value; this._rangeConstraintValidator.ValidationGroup = value; } } public int? MaximumValue { get; set; } public int? MinimumValue { get; set; } public string ErrorMessageForRangeConstraintFailed { get { this.EnsureChildControls(); return this._rangeConstraintValidator.ErrorMessage; } set { this.EnsureChildControls(); this._rangeConstraintValidator.ErrorMessage = value; } } public void ValidateRangeConstraint(object source, ServerValidateEventArgs args) { /* MAGIC */ } #endregion } </code></pre> <p>can anyone tell me, why this is not working?<br> notes:</p> <ul> <li>i've already tried to instanciate the rangeConstraint-Validator inside CreateChildControls = no effect!</li> <li>the validating method is not broken</li> <li>the "non-firing" only occures, if i set no validationGroup</li> </ul> <p>thanks in advance!</p> http://stackoverflow.com/questions/1735134/creating-a-net-custom-control 0 creating a .NET custom control Pradeep 2009-11-14T18:29:20Z 2009-11-17T04:39:47Z <p>I want to create a control which is basically a ListBox, but each ListItem is a collection of controls. So each item of that list box is a combination of a Label, a CheckBox, a Timer and a TextBox.</p> <p>Can this be done with the .NET framework?</p> <p>If so, do you have any recommendations on how to get started, any links to samples or discussion, or any open-source examples?</p> http://stackoverflow.com/questions/1732770/create-custom-control-with-reusable-properties 1 Create Custom Control with reusable properties rockinthesixstring 2009-11-14T00:33:18Z 2009-11-14T00:35:09Z <p>This is similar to my last post but with a different purpose.</p> <p>I have built a custom control, but when I set the properties for it... ALL instances of that control on my page grab the exact same property. I need to be able to set the property to "abc" for one instance of the control on my page, and then set the exact same proprty to "xyz" for a different instance of the control on the same page.</p> <p>Can anyone shed any light?</p> <pre><code>Namespace CustomControl Public Class mycontrol : Inherits Literal Protected Overrides Sub CreateChildControls() Dim value As String = "test" If _doubleit = True Then value = value &amp; "&amp;nbsp;test" End If MyBase.Text = value MyBase.CreateChildControls() End Sub Private Shared _doubleit As Boolean = True Public Shared Property doubleit() As Boolean Get Return _doubleit End Get Set(ByVal value As Boolean) _doubleit = value End Set End Property End Class </code></pre> <p>End Namespace</p> http://stackoverflow.com/questions/1732565/reusable-custom-control-with-properties 0 Reusable Custom Control with Properties rockinthesixstring 2009-11-13T23:33:39Z 2009-11-14T00:00:43Z <p>I have built a Custom Control Class that makes it much easier to build a side bar element in my html.</p> <p>The problem I am running into is that when I set the "Text" property, the last time I set it gets used for every instance of the control on my page. This is my first time doing this, so I'm assuming I'm missing something basic.</p> <pre><code>Namespace CustomControl Public Class SideBarElement : Inherits Literal ''' &lt;summary&gt; ''' Create Copyright Label ''' &lt;/summary&gt; ''' &lt;remarks&gt;&lt;/remarks&gt; Protected Overrides Sub CreateChildControls() MyBase.Text = RenderHTML() MyBase.CreateChildControls() End Sub ''' &lt;summary&gt; ''' Set all copyright information. ''' &lt;/summary&gt; Public Shared Function RenderHTML() As String Dim val As String val = "&lt;div class=""side-bar-container""&gt;" &amp; _ "&lt;div class=""side-bar-top""&gt;" &amp; _ "&lt;/div&gt;" &amp; _ " &lt;div class=""side-bar-content""&gt;" &amp; _ _Text &amp; _ "&lt;/div&gt;" &amp; _ "&lt;div class=""side-bar-bottom""&gt;" &amp; _ "&lt;/div&gt;" &amp; _ "&lt;/div&gt;" Return val End Function ''' &lt;summary&gt; ''' Create Text Property ''' &lt;/summary&gt; ''' &lt;remarks&gt;&lt;/remarks&gt; Private Shared _Text As String = String.Empty Public Shadows Property Text() As String Get Return _Text End Get Set(ByVal value As String) _Text = value End Set End Property End Class </code></pre> <p>End Namespace</p> <p>Using this control is supposed to look like this.</p> <pre><code>&lt;sidebar:SideBarElement ID="SideBarElement1" runat="server"&gt; Bla Bla&lt;/br&gt;My Fun Content.&lt;/sidebar:SideBarElement&gt; </code></pre> <p>Any help will be greatly appreciated.</p> http://stackoverflow.com/questions/1596041/including-javascript-with-a-custom-control-in-an-asp-net-website 0 Including Javascript with a custom control in an ASP.Net website Carter 2009-10-20T17:08:23Z 2009-11-13T17:51:39Z <p>I have a custom date control which is essentially a text box and the ajaxToolKit calendarExtender. I want to include Javascript in the control and have it work properly no matter what page the control is on. The control is called DateControl.ascx</p> <p>So I have two Javascript functions, dateEditor_OnShown and dateEditor_OnHiding. They get tied up in the page load of DateControl.ascx via...</p> <pre><code>CalendarExtender.OnClientShown = "dateEditor_OnShown"; CalendarExtender.OnClientHiding = "dateEditor_OnHiding"; </code></pre> <p>The DateControl tool is used on two separate pages. If I put the straight Javascript directly into the DateControl's HTML it will work only on the default page but crashes when I load up the next page with the control. The error is a js runtime error 'dateEditor_OnHiding' is undefined.</p> <p>If I try to link to the Javascript file from my DateControl's html via...</p> <pre><code>&lt;script type="text/javascript" src="../JavaScript/IE6CalendarExtenderFix.js"&gt;&lt;/script&gt; </code></pre> <p>... instead of having the Javascript directly in the page, it crashes immediately with the same error. I should note that the path to the js is correct.</p> <p>The only way I can really get it to work is if I link to the javascript on every page that the control is used.</p> <p><strong>UPDATE:</strong> I feel the need to clarify a little bit. The solutions suggested are much appreciated, but either I am not understanding or they just will not work in my case for whatever reason (quite possibly the former).</p> <p>So, this is basically what my control looks like...</p> <pre><code>&lt;div id="CustomDateControl" style="&lt;%# ControlStyle %&gt;"&gt; &lt;div id="TextBox" style="display:inline; white-space:nowrap;"&gt; &lt;asp:TextBox runat="server" ID="txtCalender" Style="&lt;%# TextBoxStyle %&gt;" /&gt; &lt;/div&gt; &lt;div id="Calendar" runat="server"&gt; &lt;ajaxToolkit:CalendarExtender runat="server" ID="CalendarExtender" Format="MM/dd/yyyy" TargetControlID="txtCalender" PopupButtonID="CalenderImage" /&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>In the aspx page, with that exact code, if I put the exact javascript in script tags so the page looks about like so...</p> <pre><code>&lt;script type="text/javascript"&gt; function dateEditor_OnShown(dateControl, emptyEventArgs) { ... } function dateEditor_OnHiding(dateControl, emptyEventArgs) { ... } &lt;/script&gt; &lt;div id="CustomDateControl" style="&lt;%# ControlStyle %&gt;"&gt; &lt;div id="TextBox" style="display:inline; white-space:nowrap;"&gt; &lt;asp:TextBox runat="server" ID="txtCalender" Style="&lt;%# TextBoxStyle %&gt;" /&gt; &lt;/div&gt; &lt;div id="Calendar" runat="server"&gt; &lt;ajaxToolkit:CalendarExtender runat="server" ID="CalendarExtender" Format="MM/dd/yyyy" TargetControlID="txtCalender" PopupButtonID="CalenderImage" /&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>This still crashes when accessing the control in the second page (not the first which is the default page) saying 'dateEditor_OnHiding' is undefined. Now, if I link to a js file with the same code using a relative path as suggested below I still get the same results. </p> <p>Also, if as suggested below, I override OnPreRender and run RegisterClientScriptInclude, I once again get the same results. The control always works on the default page but never on the second page even though as far as I can tell the script is included in the control.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1725987/set-clientrectangle-in-custom-form-in-c 1 Set ClientRectangle in custom form in C# PiotrK 2009-11-12T22:56:19Z 2009-11-13T00:05:51Z <p>In C# I have custom form of None border style which override onPaint event and draw custom background with transparency key. I want to set my own client rectangle value (so content would be placed inside my custom border), but unfortunally Form's ClientRectangle property is read-only. I found advice over net to override WndProc method (where it sets client size) but saddly, I found very little info about that. Especially it requires to fill data which are pointed by lParam and wParam and I really don't know how to do this in C#.</p> <p>Any help?</p> http://stackoverflow.com/questions/1716549/custom-phone-numbers-control 0 Custom phone numbers control Eric 2009-11-11T16:51:48Z 2009-11-12T23:59:11Z <p>I have a database that stores an arbitrary number of phone numbers. There are a few pages that (should) allow admins to change these numbers and add them.</p> <p>I plan to create a custom control that will:</p> <ul> <li>Show all existing numbers</li> <li>Provide an edit button</li> <li>In Edit mode, will show an add button</li> <li>Have an add button that adds the requisite fields in a way that does not cause a postback.</li> <li>Provide a save button (of course)</li> </ul> <p>These seems like a complicated task. I've done a bit of research, but haven't found any ready-made solutions. Is there anything I should have spotted or should know before I go about writing this from scratch?</p> http://stackoverflow.com/questions/1706241/blackberry-buttonfield-with-centered-bitmap 0 BlackBerry - ButtonField with centered Bitmap danjunior1807 2009-11-10T07:47:35Z 2009-11-12T08:46:26Z <p>Hi, I have a class that extends from ButtonField :</p> <pre><code>class BitmapButtonField extends ButtonField { private Bitmap _bitmap; private int _buttonWidth; private int _buttonHeight; BitmapButtonField(Bitmap bitmap, int buttonWidth, int buttonHeight, long style) { super(style); _buttonWidth = buttonWidth; _buttonHeight = buttonHeight; _bitmap = bitmap; } public int getPreferredHeight() { return _buttonHeight; } public int getPreferredWidth() { return _buttonWidth; } protected void layout(int width, int height) { setExtent(Math.min( width, getPreferredWidth()), Math.min( height, getPreferredHeight())); } protected void paint(Graphics graphics) { // THIS IS NOT CENTERED int x = (getPreferredWidth() - _bitmap.getWidth()) &gt;&gt; 1; graphics.drawBitmap(x, 0, _bitmap.getWidth(), _bitmap.getHeight(), _bitmap, 0, 0); // THIS IS NOT LEFTMOST, TOPMOST graphics.drawBitmap(0, 0, _bitmap.getWidth(), _bitmap.getHeight(), _bitmap, 0, 0); } } </code></pre> <p>If you could see from my comments on the paint method, clearly the ButtonField 0,0 position is not exactly in leftmost and topmost corner of the button, somehow it is padded with unknown offset, so this makes centering the image is difficult.</p> <p>But if I extend from a Field class, the problem goes away, but I need to keep extending from ButtonField since I need the ButtonField border and focus style (blue-white rounded rectangle), I just need to display centered image on a ButtonField, and still retaining all of the standard ButtonField attributes.</p> <p>Is there a way to eliminate the padded offset in paint method on a ButtonField? I've tried setPadding and setMargin but no such luck. Thanks a lot!</p> http://stackoverflow.com/questions/1349411/custom-asp-net-template-control-without-placeholder-tags 0 custom ASP.NET template control without placeholder tags Frank Schwieterman 2009-08-28T21:16:14Z 2009-11-10T19:00:03Z <p>Let's say I have a custom template control, that can be used in pages like so:</p> <pre><code>&lt;AR:CustomControl runat="server"&gt; &lt;ViewTemplate&gt; &lt;span&gt;stuff&lt;/span&gt; &lt;/ViewTemplate&gt; &lt;/AR:ModalLink&gt; </code></pre> <p>Since there is only one template field, the element isn't really necessary. Is there a way I can edit my control so it can be used like?</p> <pre><code>&lt;AR:CustomControl runat="server"&gt; &lt;span&gt;stuff&lt;/span&gt; &lt;/AR:ModalLink&gt; </code></pre> <p>Note that this is a UserControl with an ASCX file. So I don't think I can simple inherit from an existing control like Label.</p> http://stackoverflow.com/questions/1705340/how-do-i-go-about-getting-a-page-to-restart-processing-in-c 0 How do I go about getting a page to restart processing in C#? Iain Fraser 2009-11-10T02:44:13Z 2009-11-10T04:22:13Z <p>I'm working with a CMS which allows you to develop your own custom controls which get dynamically included at runtime. So I have a custom control which alters a datasource (NHibernate cache) and as I'm at a point in the process where the CMS has already read this data from the cache, I need to restart the processing of the page somehow so that the CMS picks up the new cache data. </p> <p>I know there are probably more elegant ways of doing this, but because I am unable to directly alter the data held by the CMS' core once it has read from the cache and because of the way the control gets loaded by the CMS I am out of alternatives (I think).</p> <p>I have tried doing a Response.Redirect() to the requested URL, but most browsers will think this is an infinite loop and kill the request. Any other ideas?</p> http://stackoverflow.com/questions/1703181/reliable-easy-way-to-replace-windows-forms-control-with-a-derived-control 0 Reliable/easy way to replace Windows.Forms control with a derived control? Cade Roux 2009-11-09T19:24:34Z 2009-11-09T19:28:14Z <p>I didn't follow my own best practices (use only derived controls), and I dragged a regular Windows Forms control to my form, wired it up and used it on my form ;-(</p> <p>Now I need to change the control to a derived control (derived from the same control), preserving all the settings from the designer. Is there a reliable/easy way to do this? (my current method is to remove the control, replace with the new control and ensure using differences to previous code that there are no changes other than in the class/namespace/assembly).</p> http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page 1 ASP.NET: generate property value when adding control to page Bernard Vander Beken 2009-02-12T14:13:33Z 2009-11-05T19:43:31Z <p>Context: ASP.NET 3.5 / C#</p> <p>Hi,</p> <p>I created a user control</p> <pre><code>public partial class MyControl : UserControl { // EDIT: example first used "UniqueId" as property name, which was wrong. public Guid MyId { get; set; } // ... } </code></pre> <p>and this example usage</p> <pre><code>&lt;uc1:MyControl ID="myControl" MyId="443CBF34-F75F-11DD-BE2F-68C555D89123" runat="server" /&gt; </code></pre> <p>Steps:</p> <ul> <li>Add this control to a web form (aspx)</li> </ul> <p>Expected result:</p> <ul> <li>the HTML for the user control is added, a unique value (corresponding to Guid.NewGuid()) for MyId is set in the ASPX HTML at design-time as the MyId attribute value.</li> </ul> <p>Actual result:</p> <ul> <li>the HTML for the user control is added, a unique value for MyId is not set in the HTML at design time for the MyId Attribute value.</li> </ul> <p>If this is not possible:</p> <ul> <li>Workaround 1: Would it be possible to achieve this using a server control? How?</li> <li>Workaround 2: is it possible to achieve this using a UserControl design-mode task?</li> </ul> <p>Clarification: </p> <ul> <li>persisting the property value is <strong>not</strong> an issue, since it never changes for a control intance and is automatically set by ASP.NET through the control declaration in the aspx page.</li> <li>the MyId attribute does not need to be rendered at runtime.</li> </ul> <p>Gr B!</p>