active questions tagged controls - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T04:50:46Zhttp://stackoverflow.com/feeds/tag/controlshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933406/date-and-time-picker-problem-cant-reset-date-or-time0date and time picker problem, can't reset date or timeMike D2009-12-19T16:46:48Z2009-12-21T02:16:14Z
<p>I'm using a usoft date time picker control in a dialog box. I started by setting the format to "HH':'mm' 'ddddMMMdd','yyyy" and the current local date & time using DTM-SETSYSTEMTIME. If the user changes any field in the control, the program can not reset the date and time in the control using DTM-SETSYSTEMTIME although SendMessage returns a 1. As far as I can tell, the dialog box returns false (zero) to any notifications it receives concerning the control.</p>
<p>The problem as described above is how I first became aware of it but it's actually much simpler. I did two DTM-SETSYSTEMTIME calls in a row and only the first one took affect. The second in the following example does not get put into effect even though the status is returned is 1.</p>
<pre><code> hwnd = GetDlgItem (hDlg, IDC_SUN_STAT_DATE_TIME);
Status = SendMessage (hwnd, DTM_SETFORMAT,0,(LPARAM)"HH':'mm' 'ddddMMMdd','yyyy");
Status = SendMessage (hwnd, DTM_SETSYSTEMTIME,GDT_VALID, (LPARAM)&systimeTime);
systimeTime.wHour += 2;
Status = SendMessage (hwnd, DTM_SETSYSTEMTIME,GDT_VALID, (LPARAM)&systimeTime);
</code></pre>
<p>It appears that only the first DTM-SETSYSTEMTIME is put into effect, following ones are ignored.</p>
<p>What do I have to do to change/reset the date/time in the control? Or (more likely) what am I doing wrong?</p>
http://stackoverflow.com/questions/1608889/is-there-a-way-to-set-the-days-and-month-names-manually-in-a-winform-datetimepick0is there a way to set the days and month names manually in a winform datetimepicker?Sam2009-10-22T17:52:26Z2009-12-20T21:00:02Z
<p>hello</p>
<p>I want to set the days of a datetimepicker in english</p>
<p>but unfortunatly, the datetime picker don't support culture</p>
<p>so I think I can inherit the control, and set the days and months name by myself</p>
<p>but I don't know how</p>
<p>anybody has an idea for that ?</p>
<p>thanks in advance</p>
<p>Sam</p>
http://stackoverflow.com/questions/1331151/combo-with-2d-borders-on-xaml0Combo with 2D borders on XAMLunknown (google)2009-08-25T21:36:21Z2009-12-20T18:00:02Z
<p>I am working with XAML. How can I add a combo box with flat borders (Not 3D)?</p>
http://stackoverflow.com/questions/1933083/asp-net-compositecontrol-createchildcontrols-small-problem0ASP.NET CompositeControl CreateChildControls() small problemHeko2009-12-19T14:50:01Z2009-12-19T14:50:01Z
<p>Helo!</p>
<p>I have a small problem with CreateChildControls() method.
I have a List of items, and each item will have a Button with Click event.
Items will be added in Page_Load event.</p>
<p>So for each item in a list, I would like to add a Button with EventHandler
like this:</p>
<pre><code> foreach (Item i in _items)
{
Button del = new Button { ID = "del_" + i.ItemText };
del.Click += new EventHandler(del_button_Click);
_delButtons.Buttons.Add(del);
this.Controls.Add(del);
}
</code></pre>
<p>The problem is that when CreateChildControls() is called I don't have the _items list yet
(Items are added on Page_Load event).</p>
<p>I can add new Buttons in Render event, but than click event doesn't work(del_button_Click doesn't fire). Any ideas?</p>
<p>So - the question is how to generate a Button for each list item in CreateChildControls() when I don't have the list items yet?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1929600/best-way-to-modify-button-behavior-and-content-but-maintain-styles0Best way to modify Button behavior and Content, but maintain styles?grimus2009-12-18T17:22:55Z2009-12-18T22:58:19Z
<p>I'm trying to create a control in Silverlight that inherits from Button so that I can perform a specific action everytime it is clicked. I'm doing this because I'd like to reuse this custom button in several locations with the same functionality.</p>
<p>I'd like to create the control in such a way so that I have a can set the custom Button's Content to a specific default icon image, but still have the rest of the button's style coming from either the default button style, or being automatically set by the toolkit Themes.</p>
<p>I'd also like to have the Content be described and editable in XAML rather than code if possible.</p>
<p>It seems like this would be a pretty common problem for Silverlight developers - is there a good way to tackle it?</p>
http://stackoverflow.com/questions/1929047/link-two-controls-in-one1Link two controls in oneserhio2009-12-18T15:59:50Z2009-12-18T22:06:32Z
<p>Hello, guys!</p>
<p>I wonder if there is a possibility to (visually and functionally) link two controls(components)? (.NET2)</p>
<p>Simplifying the things, I have two labels - one of them is the main label (it can be deplaced with the mouse) and an other - the description label - it needs to follow the main label on a specified distance. </p>
<p>Also, the description label should be able to respond to the events, like mouse click etc.
Maybe there is a possibility to use a <strong>UserControl</strong> but between the labels I need to be a "transparent" space.</p>
<p>Thanks.</p>
<p>==EDIT==</p>
<p>I could also, instead of creating the second label control, just use a <strong>eternal toolTip</strong>. In this case i wonder about possibility of displaying it the Infinite time AND also possibility to detect the click on the tooltip.</p>
<p>Anyway, If I click on the label or tooltip, <em>I will need to display to the user a TextBox</em> control(instead of the tooltip or label), in order that it be able to Modify the displayed description (in fact displaying time)</p>
<p>=================</p>
<p>* The description was a little simplified. In my real case I have a custom circular point component (: from Microsoft.VisualBasic.PowerPacks.OvalShape). The point represents a object in time position - in the linked label I need to specify the point's time. User will be able to modify the point's time by clicking on the time label. </p>
http://stackoverflow.com/questions/1892371/wpf-grid-woes-and-hopes-for-a-named-column0WPF - Grid woes and hopes for a named columnVaccano2009-12-12T05:05:58Z2009-12-18T03:19:29Z
<p>Is there a way to set your column (or row) to a named value rather than a number?</p>
<p>I am about to go add a column to my grid. That means I have to go to every control after the new column and bump up its column number. This is tedious and error prone.</p>
<p>Is there a way that I can bind to a named column? Maybe via resources? (As I write this a static resource is sounding more promising. If anyone has a good example of how to do it give it a post.)</p>
http://stackoverflow.com/questions/850624/how-to-make-the-wpf-datepicker-control-look-like-its-winforms-cousin1How to make the WPF DatePicker control look like its WinForms cousin?AngryHacker2009-05-12T00:15:20Z2009-12-17T18:33:34Z
<p>I downloaded and installed the WPF Toolkit (which provides controls that could not be shipped in time with VS2008). </p>
<p>However, the DatePicker control does not look like its WinForms cousin.<br />
<img src="http://www.angryhacker.com/toys/datepicker.png" alt="alt text" /></p>
<p>First, the dropdown button is not a dropdown, but a small picture of the calendar. Secondly, the calendar opens to the right on the control rather than underneath it. How can I make the control look like a normal date picker? Or should I be using something else?</p>
http://stackoverflow.com/questions/1923160/wpf-binding-from-a-findancestor-to-dependency-property-of-custom-control0wpf binding from a FindAncestor to Dependency Property of custom controlAndy Clarke2009-12-17T17:03:27Z2009-12-17T17:45:14Z
<p>Hi,</p>
<p>I've got a custom WPF control with a DependencyProperty MyString </p>
<p>I'm using the control within an ItemsControl on my View and want to fish a value out from the ViewModel.</p>
<p>As the DataContext of the control becomes each Item in the ItemsSource of the ItemsControl I thought I'd just be able to use FindAncestor but it dosnt seem to work ... can anyone see where I'm going wrong please?</p>
<p>Heres the XAML on the View ...</p>
<pre><code><Grid>
<ItemsControl ItemsSource="{Binding MyItems}" >
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Name="myStack">
<ImportExceptions:ControlStrip MyString="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ItemsControl}}, Path=DataContext.MyStringOnViewModel}" />
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</code></pre>
<p>and heres the code behind my custom control where I've set up my dependency property ...</p>
<pre><code>public partial class ControlStrip
{
public ControlStrip()
{
InitializeComponent();
}
public string MyString
{
get
{
return GetValue(MyStringProperty).ToString();
}
set
{
SetValue(MyStringProperty, value);
}
}
public static readonly DependencyProperty MyStringProperty =
DependencyProperty.RegisterAttached("MyString", typeof (string), typeof (ControlStrip));
}
</code></pre>
http://stackoverflow.com/questions/935481/user-control-events-not-getting-to-their-handlers0User control events not getting to their handlersPhrkOnLsh2009-06-01T16:01:35Z2009-12-17T12:00:01Z
<p>I am trying to create a user control to wrap around the Membership API (A set of custom Gridviews to display the data better) and, while the code and the controls worked fine in the page, when I moved them to an .ascx, the events stopped firing to it.</p>
<pre><code><%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CustomMembership.ascx.cs" Inherits="CCGlink.CustomMembership" %>
<asp:Panel ID="mainPnl" runat="server">
<asp:Label
id="lblError"
ForeColor="Red"
Font-Bold="true"
runat="server" />
<asp:GridView
id="grdUsers"
HeaderStyle-cssclass="<%# _headercss %>"
RowStyle-cssclass="<%# _rowcss %>"
AlternatingRowStyle-cssclass="<%# _alternatingcss %>"
OnRowUpdating="grdUsers_RowUpdating"
OnRowDeleting="grdUsers_RowDeleting"
OnRowCancelingEdit="grdUsers_cancelEdit"
autogeneratecolumns="false"
allowsorting="true"
AllowPaging="true"
EmptyDataText="No users..."
pagesize="<%# PageSizeForBoth %>"
runat="server">
<!-- ...columns... -->
</asp:GridView>
<asp:Button
id="btnAllDetails"
onclick="btnAllDetails_clicked"
text="Full Info"
runat="server" />
<asp:GridView
DataKeyNames="UserName"
HeaderStyle-cssclass="<%# _headercss %>"
RowStyle-cssclass="<%# _rowcss %>"
AlternatingRowStyle-cssclass="<%# _alternatingcss %>"
id="grdAllDetails"
visible="false"
allowsorting="true"
EmptyDataText="No users in DB."
pagesize="<%# PageSizeForBoth %>"
runat="server" />
<asp:Button
id="btnDoneAllDetails"
onclick="btnAllDetails_clicked"
text="Done."
Visible="false"
runat="server" />
</asp:Panel>
</code></pre>
<p>However, none of the events in the first two controls (the gridview grdUsers and the button btnAllDetails) simply do NOT occur, I have verified this in the debugger. If they occured just fine in the aspx page, why do they die on moving to the ascx?</p>
<p>My code in the aspx now is:</p>
<pre><code> <div class="admin-right">
<asp:ScriptManager ID="sm1" runat="server" />
<h1>User Management</h1>
<div class="admin-right-users">
<asp:UpdatePanel ID="up1" runat="server">
<ContentTemplate>
<cm1:CustomMembership
id="showUsers"
PageSizeForBoth="9"
AlternatingRowStylecssclass="alternating"
RowStylecssclass="row"
DataSource="srcUsers"
HeaderStylecssclass="header"
runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/701412/how-to-find-controls-in-a-repeater-header-or-footer2How to find controls in a repeater header or footerCrossbrowser2009-03-31T15:00:12Z2009-12-17T08:16:06Z
<p>I was wondering how one would find the controls in the HeaderTemplate or FooterTemplate of an Asp.Net Repeater control.</p>
<p>I can access them on the ItemDataBound event, but I was wondering how to get them after (for example to retrieve a value of an input in the header/footer).</p>
<p>Note: I posted this question here after finding the answer just so that I remember it (and maybe other people might find this useful).</p>
http://stackoverflow.com/questions/1914577/wpf-dockable-windows-like-igoogle0WPF Dockable Windows Like iGoogleAnon2009-12-16T13:09:43Z2009-12-16T13:17:43Z
<p>I'm looking for a dockable windows/panel control in the style of <a href="http://www.google.co.uk/ig?hl=en&source=iglk" rel="nofollow">iGoogle</a>. All of the ones I have found so far all have a fixed length on the height of your window/panel but I want to be able to have windows of varying length like iGoogle.</p>
<p>The best I have found so far has been a control libarary called BlackLight which does not have the feature explained above.</p>
http://stackoverflow.com/questions/1914130/csharp-2d-windows-form-controls-in-a-3d-space0CSharp - 2D windows form controls in a 3D spacemG2009-12-16T11:36:47Z2009-12-16T11:36:47Z
<p>Hi, please forgive me if this is not the proper place to post this question.</p>
<p>I'm new to dotNET and know nothing about Direct3D and WPF. The tutorials I found out there don't seem to be suitable for a beginner like me.</p>
<p><strong>I want to create a simple windows form in CSharp which has its 2D controls placed in a 3D space, please guide me in a simple way.</strong></p>
<p>I'm sorry I'm not good at English, I don't know if the above question is clear enough, please let me explain it with the following picture:</p>
<p><a href="http://i825.photobucket.com/albums/zz180/mGlushed/3dform.png" rel="nofollow">I cannot post images yet, please click this link</a></p>
<p>(<em>The above picture is not real, it is edited using photoshop, it is just to explain the goal I want to achieve</em>.)</p>
<p>To make it more clear, this is an example project in Flash I worked on a long time ago, I want to create similar thing as a windows application with CSharp:</p>
<p>aveltium.blogspot.com (<em>This is my first post so I cannot put two hyperlinks</em>)</p>
http://stackoverflow.com/questions/1913722/wxpython-controls-not-clickable0wxPython controls not clickableChris2009-12-16T10:25:38Z2009-12-16T10:27:05Z
<pre><code>//if I use BoxSizer instead of StaticBoxSizer, the button is clickable.
//if there is a radio button under StaticBoxSizer, it is clickable,
//but the button is not
row1 = wx.StaticBoxSizer(wx.StaticBox(panel, -1, 'this is row one'), orient=wx.HORIZONTAL)
row1.Add(label1,0,wx.TOP | wx.RIGHT,7)
row1.Add(self.fileCtrl)
row2 = wx.BoxSizer(wx.HORIZONTAL)
//for everything in row2, neither buttons nor radio buttons are clickable
actionBox = wx.StaticBoxSizer(wx.StaticBox(panel, -1, 'asdfasdf'), orient=wx.VERTICAL)
actionRow1 = wx.BoxSizer(wx.HORIZONTAL)
actionRow1.Add(wx.StaticText(panel, -1, 'blah blah ', (5, 5)))
actionRow1.Add(self.mailRadio)
actionRow2 = wx.BoxSizer(wx.HORIZONTAL)
actionRow2.Add(wx.StaticText(panel, -1, 'lah dee dah', (5, 5)))
actionRow2.Add(self.uploadRadio,5)
actionBox.Add(actionRow1,0,wx.EXPAND)
actionBox.Add(actionRow2)
row2.Add(actionBox)
wrapper = wx.FlexGridSizer(2,1,5,5)
wrapper.AddGrowableCol(0)
wrapper.Add(row1,0,wx.TOP | wx.LEFT | wx.RIGHT | wx.ALIGN_CENTER,15)
wrapper.Add(row2,0,wx.ALL | wx.ALIGN_CENTER,15)
panel.SetSizerAndFit(wrapper)
self.Centre()
self.Fit()
</code></pre>
<p>I'm testing this in OS X, but I need it to work on windows too. Pretty new to this so this is confusing me. Is there something like css z-index that I have to set?</p>
http://stackoverflow.com/questions/1910396/silverlight-data-binding-is-it-possible-to-temporary-suspend0Silverlight data-binding - is it possible to temporary suspendLee Atkinson2009-12-15T21:05:16Z2009-12-15T21:25:52Z
<p>Hi</p>
<p>I have a group of Siverlight elements that are bound to an object. I want to be able to suspend the databind (effectively freeze their current values) for some time (when the mouse hovers hover the containing panel).</p>
<p>What's the best way to do this? There doesn't seem to be an easy way - one thought is to create a copy of the data object, and set the DataContext to that during the suspension - but that would mean making sure I copy all of the data object's state.</p>
<p>Lee</p>
http://stackoverflow.com/questions/1908893/rendering-re-usable-content-in-asp-net-mvc-what-are-my-options0rendering/re-usable content in asp.net mvc, what are my options?mrblah2009-12-15T17:03:56Z2009-12-15T17:05:54Z
<p>In webforms, if I wanted to display a list of categories I would create a category control. this control would either take in parameters or analyze the current url and list the categories and breadcrumb as appropriate.</p>
<p>What options do I have with asp.net mvc?</p>
http://stackoverflow.com/questions/1898568/divert-asp-net-child-controls0divert asp.net child controlsEric2009-12-14T01:57:52Z2009-12-14T02:15:36Z
<p>Hi Folks,
I am trying to create an asp.net custom control that acts as a hosting container for any other controls, similar to the existing ‘Panel’ control. Basically, I need to build a web control that groups a bunch of other controls. It will consist of a header and a body pane, similar to a normal window in desktop application. The header will contain some simple text and some JavaScript driven code that shows/hides the body pane. The body pane simply hosts any number of other controls.</p>
<pre><code>+------------------------------------------------------+
| User Details Show/Hide |
+------------------------------------------------------+
| Name: [Eric ] |
| Address: [Some where] |
| Date of Birth: [01/01/1980] |
| |
| (any other fields goes on) |
| |
| |
+------------------------------------------------------+
</code></pre>
<p>Ideally I want to create a control that packs the whole thing together, so at design time I could use the following markup.</p>
<pre><code><myCtl:SuperContainer runat=”server” Title=”User Details”>
<asp:label id=”lblName” runat=”server” text=”Name:”/>
<asp:textbox id=”txtName” runat=”server”/>
<asp:label id=”lblDOB” runat=”server” text=”Date of Birth:”/>
<asp:textbox id=”txtDOB” runat=”server”/>
(…other controls definition…)
</myCtl:SuperContainer>
</code></pre>
<p>I plan to include two panels in my control, one for the header and another one for the body, but as you can see, the key issue is to find a way to ‘divert’ the child controls that are defined in the markup to the body panel, instead of the default parent container. I feel it can be some how simply override (manipulate) the control property, but don’t know how to properly do so.</p>
<p>Can any one give some idea about how to implement this ‘SuperContainer’ control? </p>
<p>Many thank,</p>
<p>Eric </p>
http://stackoverflow.com/questions/861061/transparent-checkbox-in-custom-control-using-c2Transparent Checkbox in Custom Control Using C#codethis2009-05-14T00:27:58Z2009-12-12T13:57:54Z
<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/1891886/wpf-open-source-of-xaml-control-examples3WPF: Open source of xaml control examplesBrad2009-12-12T01:25:29Z2009-12-12T01:58:11Z
<p>I'm teaching myself WPF and xaml by replicating existing controls and UI from AutoCAD 2010 and Excel 2010. Once the various controls are polished, I would be happy to share any code. Is there sites or communities that are open source and WPF or xaml based?</p>
<p><img src="http://cartesia.pbworks.com/f/1260580772/ControlSample.png" alt="WPF Control Example"></p>
http://stackoverflow.com/questions/1887586/quickwatch-like-control-for-net-winforms0QuickWatch-like control for .NET WinForms?André Pena2009-12-11T11:54:23Z2009-12-12T00:47:15Z
<p>Visual Studio QuickWatch window has a hierarchical property grid control. Is a control like that available somewhere?</p>
<p>The default property grid control doesn't seem to work for me as it requires the objects to have an ExpandableConverter attribute to work the way I want. Although, if any of you know a way to turn the property grid into a QuickWatch-like control it would also be accepted.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1889701/float-a-control-over-other-controls-in-wpf0Float a control over other controls in WPFWill2009-12-11T17:43:48Z2009-12-11T18:32:38Z
<p>I'm having a hard time even phrasing this question.</p>
<p>I'm displaying preview images to users in my UI within a ListBox. When a user hovers over the image, I'd like to expand it so the user can see more detail.</p>
<p>I've gotten to the point where I can "pop up" the image, but of course it is still within its normal position in the layout, meaning that rather than the image being displayed on top of the other controls near it, it only appears on top of the controls rendered before it and underneath those rendered after it. It is also being cropped by the bounds of the ListBox.</p>
<p>Is there a simple (i.e., no custom control development) way to, temporarily, remove that image from the visual layout and put it above all other elements?</p>
<p>Here's a crappy demo app that shows what I'm talking about:</p>
<p><img src="http://i45.tinypic.com/f0qalj.png" alt="Demonstration of issues"></p>
<p>Notice the zoomed image is clipped by the bounds of the ListBox (outside of the list box is red). Also, notice that UI elements rendered after the zoomed image overlay it still--both icons that come later and item names ("Item 5" and others seen in the lower left hand corner).</p>
http://stackoverflow.com/questions/1884851/propertygrid-and-dynamic-types-of-objects1PropertyGrid and Dynamic Types of ObjectsMarina2009-12-10T23:28:13Z2009-12-11T02:02:15Z
<p>Hello,</p>
<p>I'm writing a GUI application where I need to enable editing properties of arbitrary objects (their types are only known at run-time).</p>
<p>I've decided to use the PropertyGrid control to enable this functionality.
I created the following class:</p>
<pre><code>[TypeConverter(typeof(ExpandableObjectConverter))]
[DefaultPropertyAttribute("Value")]
public class Wrapper
{
public Wrapper(object val)
{
m_Value = val;
}
private object m_Value;
[NotifyParentPropertyAttribute(true)]
[TypeConverter(typeof(ExpandableObjectConverter))]
public object Value
{
get { return m_Value; }
set { m_Value = value; }
}
}
</code></pre>
<p>When I get an instance of an object I need to edit, I create a Wrapper for it and set it as the selected object:</p>
<pre><code>Wrapper wrap = new Wrapper(obj);
propertyGrid.SelectedObject = wrap;
</code></pre>
<p>But I've run into the following problem - the above works as expected only when the type of obj is some custom type (i.e a class that I defined by myself, or a built in complex type) but not when obj is a primitive.</p>
<p>For example, if I define:</p>
<pre><code>[TypeConverter(typeof(ExpandableObjectConverter))]
public class SomeClass
{
public SomeClass()
{
a = 1;
b = 2;
}
public SomeClass(int a, int b)
{
this.a = a;
this.b = b;
}
private int a;
[NotifyParentPropertyAttribute(true)]
public int A
{
get { return a; }
set { a = value; }
}
private int b;
[NotifyParentPropertyAttribute(true)]
public int B
{
get { return b; }
set { b = value; }
}
}
</code></pre>
<p>And do:</p>
<pre><code>Wrapper wrap = new Wrapper(new SomeClass());
propertyGrid.SelectedObject = wrap;
</code></pre>
<p>Then everything works swell. On the other hand, when I perform the following:</p>
<pre><code>int num = 1;
Wrapper wrap = new Wrapper(num);
propertyGrid.SelectedObject = wrap;
</code></pre>
<p>Then I can see the value "1" in the grid (and it's not grayscaled) but I can't edit the value. I noticed that if I change Wrapper's "Value" property's type to int and remove the TypeConverter attribute, it works.
I get the same behavior for other primitive types and strings.</p>
<p>What is the problem?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1884909/c-check-if-a-control-is-there0c#: Check if a control is therezee2009-12-10T23:40:20Z2009-12-10T23:56:06Z
<p>Hello,</p>
<p>I'm using in vc# 2k8 a control that is not standard! If someone starts my program without having the program, that my control is for, he'll get an exception!</p>
<p>How to check if you can use this control or don't...</p>
<p>The program should also work without that control and without the features that uses it by a condition!</p>
<p>EDIT: I'm sorry, I meant I have a AcrobatReader control but my program crashes if you don't have the Reader installed</p>
http://stackoverflow.com/questions/1878189/add-a-load-event-for-winforms-control-just-as-form-class0Add a Load event for Winforms Control just as Form classdeerchao2009-12-10T01:52:28Z2009-12-10T18:06:36Z
<p>Hi, is there a way I can get a Load event for System.Windows.Forms.Control just like System.Windows.Forms.Form.Load?</p>
<p>I want to run some initialize code before the control first shown.</p>
<p>Also, it would be nice to be able to do the same for System.Windows.Forms.ToolStripStatusLabel which is not actually a Control, but works like one.</p>
<p>Ideally, I can do this:
control.OnLoad(() => { dosomething here; });</p>
<p>in which OnLoad is a extension method that would run the argument Action when the "control" "Loads".</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1870313/gridview-vs-datalist-vs-repeater-vs-listview0GridView vs DataList vs Repeater vs ListViewMarco2009-12-08T22:24:47Z2009-12-10T08:41:45Z
<p>Hello all,</p>
<p>I have read some articles about this matter... and it seems that the Repeater is the one with best performance as explained in <a href="http://stackoverflow.com/questions/139207/repeater-listview-datalist-datagrid-gridview-which-to-choose">this other question</a>:</p>
<p>I know that the GridView is the heaviest of them all, and that it weights a lot in the ViewState. So the DataList has been the "best" option for some situations.</p>
<p>But how about Datalist performance vs ListView?</p>
<p>Also, the GridView has a Pager already built in... and it seems that the ListView has one to.
But if it create a pager for the DataList... will it become heavier than the GridView?
And how about DataList + Paging vs ListView with Paging?</p>
<p>Thx in advance.</p>
http://stackoverflow.com/questions/1875184/how-to-add-filtering-to-the-file-explorer-opened-by-the-aspuploadfile-control1How to add filtering to the File Explorer opened by the asp:UploadFile controltivo2009-12-09T16:45:39Z2009-12-09T20:42:51Z
<p>Is there any way to open the file explorer setting the filtering options like a desktop application does?, and I don't want to validate the file after is selected, I want my users to view only valid files throught filtering them before.</p>
http://stackoverflow.com/questions/1876579/getting-property-value-is-not-valid-message-when-control-is-in-design-mode-vs0Getting "Property value is not valid" message when Control is in Design Mode (VS 2008)Gerhard Weiss2009-12-09T20:16:21Z2009-12-09T20:16:21Z
<p>I am getting dialog box <strong>"Property value is not valid"</strong> when the Control is in <strong>Design Mode</strong> (Visual Studio 2008) and I try to change the Property's Value. </p>
<p>Here is the property in question:</p>
<pre><code><Description("Gets/Sets the visibillity of the SaveButton of Control")> _
Property ShowSaveButton() As Boolean
Get
Return _SaveVisible
End Get
Set(ByVal Value As Boolean)
_SaveVisible = Value
If Value Then
If Model.CommonUser.CurrentUser.IsReadOnly = False Then
CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton)
End If
Else
DoRemove(enBeneButtons.enSaveButton)
End If
End Set
End Property
</code></pre>
<p>The error detail shows "<strong>CommonUser</strong> must be initialized first.", which of course is pointing at this code.</p>
<pre><code>If Model.CommonUser.CurrentUser.IsReadOnly = False Then
CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton)
End If
</code></pre>
<p>Is there some sort of if statement that can be used to skip around code when in Design Mode.
VisualStudioDesignMode is used below.</p>
<pre><code>If VisualStudioDesignMode = True Then
CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton)
ElseIf Model.CommonUser.CurrentUser.IsReadOnly = False Then
CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton)
End If
</code></pre>
<p>Again, this dialog box comes up in VS 2008 design mode. The logic works when the application is running.</p>
http://stackoverflow.com/questions/121724/where-can-i-find-free-wpf-controls-and-control-templates8Where can I find free WPF controls and control templates?Rich B2008-09-23T15:26:22Z2009-12-09T16:02:12Z
<p>I am looking for some recommendations on good places to find libraries of controls/templates/styles for WPF. I know about the usual places like Infragistics, but it seems to me that there should be some kind of community effort by now to share nice, clean, well written controls for WPF controls.</p>
<p>I am not big on the design side, and it would be nice to fill out my personal libraries with some nice examples from people who are better at design.</p>
<p>Any ideas/recommendations?</p>
http://stackoverflow.com/questions/642063/labelsize-appears-bigger-in-vb-net0Labelsize appears bigger in VB.NetIkke2009-03-13T10:17:28Z2009-12-09T05:00:02Z
<p>I'm trying to stack a few lists on top of each other. But the label.size.height appears to be bigger then the label itself.</p>
<p>When i set the borderstyle to fixedsingle, i see the border around the text. But the height is bigger, so there comes a space between one label and the next.</p>
<p>I have tried to set margin and padding to 0 without result.</p>
<p>Exemple: label.size.height return 23, when the height actually is something around 15.</p>
<p>Does someone knows how i get the right size?</p>
<p><b>Edit:</b>
When i explicitly set the height of the lable, the problem is solved. Is this some problem with autosize?</p>
http://stackoverflow.com/questions/1863446/winforms-control-showing-text-and-supporting-individual-line-coloring1Winforms control showing text and supporting individual line coloringkay.herzam2009-12-07T22:44:11Z2009-12-08T01:15:48Z
<p>For a Winforms application, I'm looking for a control which is able to show text and supports individual line colors (fore and background colors per line).</p>
<p>For instance, I'd like to have line 1 with a green background color and line 4 with red.</p>