WPF UserControl Design Time Size - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T21:14:12Zhttp://stackoverflow.com/feeds/question/75495http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size11WPF UserControl Design Time SizeJoseph Sturtevant2008-09-16T18:32:10Z2009-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><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">
<Grid Background="LightGray">
<loc:UserControl1 />
</Grid>
</Window>
</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><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">
<Grid Background="LightCyan" />
</UserControl>
</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><UserControl x:Class="ExampleApplication3.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid Background="LightCyan" />
</UserControl>
</code></pre>
http://stackoverflow.com/questions/75495/wpf-usercontrol-design-time-size/75527#755278Answer by Brian Leahy for WPF UserControl Design Time SizeBrian Leahy2008-09-16T18:36:06Z2008-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#7560613Answer by AlexDuggleby for WPF UserControl Design Time SizeAlexDuggleby2008-09-16T18:44:07Z2008-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#791344Answer by AndyL for WPF UserControl Design Time SizeAndyL2008-09-17T01:57:35Z2008-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><loc:UserControl1 Width="auto" Height="auto" /></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#3118971Answer by esskar for WPF UserControl Design Time Sizeesskar2008-11-22T23:21:38Z2008-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#4218411Answer by Paul for WPF UserControl Design Time SizePaul2009-01-07T19:58:31Z2009-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 <> 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#12081060Answer by jpierson for WPF UserControl Design Time Sizejpierson2009-07-30T17:30:21Z2009-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>