WPF UserControl Design Time Size - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:14:12Z http://stackoverflow.com/feeds/question/75495 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size 11 WPF UserControl Design Time Size Joseph Sturtevant 2008-09-16T18:32:10Z 2009-09-24T16:32:05Z <p>When creating a UserControl in WPF, I find it convenient to give it some arbitrary Height and Width values so that I can view my changes in the Visual Studio designer. When I run the control, however, I want the Height and Width to be undefined, so that the control will expand to fill whatever container I place it in. How can I acheive this same functionality without having to remove the Height and Width values before building my control? (Or without using DockPanel in the parent container.)</p> <p>The following code demonstrates the problem:</p> <pre><code>&lt;Window x:Class="ExampleApplication3.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:loc="clr-namespace:ExampleApplication3" Title="Example" Height="600" Width="600"&gt; &lt;Grid Background="LightGray"&gt; &lt;loc:UserControl1 /&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>The following definition of <code>UserControl1</code> displays reasonably at design time but displays as a fixed size at run time:</p> <pre><code>&lt;UserControl x:Class="ExampleApplication3.UserControl1" 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 Background="LightCyan" /&gt; &lt;/UserControl&gt; </code></pre> <p>The following definition of <code>UserControl1</code> displays as a dot at design time but expands to fill the parent <code>Window1</code> at run time:</p> <pre><code>&lt;UserControl x:Class="ExampleApplication3.UserControl1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Grid Background="LightCyan" /&gt; &lt;/UserControl&gt; </code></pre> http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size/75527#75527 8 Answer by Brian Leahy for WPF UserControl Design Time Size Brian Leahy 2008-09-16T18:36:06Z 2008-09-16T18:41:39Z <p>For Blend, a little known trick is to add these attributes to your usercontrol or window:</p> <pre><code> xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignHeight="500" d:DesignWidth="600" </code></pre> <p>This will set the design height and width to 500 and 600 respectively. However this will only work for the blend designer. Not the Visual Studio Designer. </p> <p>As far as the Visual Studio Designer your technique is all that works. Which is why I don't use the Visual Studio Designer. ;)</p> http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size/75606#75606 13 Answer by AlexDuggleby for WPF UserControl Design Time Size AlexDuggleby 2008-09-16T18:44:07Z 2008-09-16T18:44:07Z <p>In Visual Studio add the Width and Height attribute to your UserControl XAML, but in the code-behind insert this</p> <pre><code>public UserControl1() { InitializeComponent(); if (LicenseManager.UsageMode != LicenseUsageMode.Designtime) { this.Width = double.NaN; ; this.Height = double.NaN; ; } } </code></pre> <p>This checks to see if the control is running in Design-mode. If not (i.e. runtime) it will set the Width and Height to NaN (Not a number) which is the value you set it to if you remove the Width and Height attributes in XAML.</p> <p>So at design-time you will have the preset width and height (including if you put the user control in a form) and at runtime it will dock depending on its parent container.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size/79134#79134 4 Answer by AndyL for WPF UserControl Design Time Size AndyL 2008-09-17T01:57:35Z 2008-09-17T01:57:35Z <p>I do this all the time. Simply set the width and height values to "auto" where you instantiate your control, and this will override the design-time values for that UserControl.</p> <p>ie: <code>&lt;loc:UserControl1 Width="auto" Height="auto" /&gt;</code></p> <p>Another option is to set a combination of MinWidth and MinHeight to a size that allows design-time work, while Width and Height remain "auto". Obviously, this only works if you don't need the UserControl to size smaller than the min values at runtime.</p> http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size/311897#311897 1 Answer by esskar for WPF UserControl Design Time Size esskar 2008-11-22T23:21:38Z 2008-11-22T23:21:38Z <p>I do it similar, but my solution assures that if you add your control to an container in design mode, it will appear reasonably.</p> <pre><code>protected override void OnVisualParentChanged(DependencyObject oldParent) { if (this.Parent != null) { this.Width = double.NaN; this.Height = double.NaN; } } </code></pre> <p>what do you think?</p> http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size/421841#421841 1 Answer by Paul for WPF UserControl Design Time Size Paul 2009-01-07T19:58:31Z 2009-01-07T19:58:31Z <p>Thanks to the original answerer for this solution! For those that are interested, here it is in VB:</p> <pre><code>If LicenseManager.UsageMode &lt;&gt; LicenseUsageMode.Designtime Then Me.Width = Double.NaN Me.Height = Double.NaN End If </code></pre> http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size/1208106#1208106 0 Answer by jpierson for WPF UserControl Design Time Size jpierson 2009-07-30T17:30:21Z 2009-09-24T16:32:05Z <p>Some have suggested using the LicenseManager.UsageMode property which I've never seen before but I have used the following code.</p> <pre><code>if(!DesignerProperties.GetIsInDesignMode(this)) { this.Width = double.NaN; this.Height = double.NaN; } </code></pre> <p>esskar,</p> <p>I just want to add that you should generally always call the method of the base when overriding an "On" method.</p> <pre><code>protected override void OnVisualParentChanged(DependencyObject oldParent) { base.OnVisualParentChanged(oldParent); ... } </code></pre> <p>Great workaround by the way, I'm using it myself now too.</p>