WPF Binding to Grid Column Width - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T05:09:02Z http://stackoverflow.com/feeds/question/285730 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/285730/wpf-binding-to-grid-column-width 2 WPF Binding to Grid Column Width Ash 2008-11-12T23:04:24Z 2008-11-13T10:20:22Z <p>I'm attempting to bind a DependancyProperty in one of my usercontrols to the <code>Width</code> property of a Column in a Grid. </p> <p>I have code similar to this:</p> <pre><code>&lt;Grid x:Name="MyGridName"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition x:Name="TitleSection" Width="100" /&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt;...&lt;/Grid.RowDefinitions&gt; &lt;GridSplitter x:Name="MyGridSplitter" Grid.Row="0" Grid.Column="0" ... /&gt; &lt;/Grid&gt; </code></pre> <p>In a seperate Usercontrol I have the following DependancyProperty defined.</p> <pre><code>public static readonly DependencyProperty TitleWidthProperty = DependencyProperty.Register("TitleWidth", typeof(int), typeof(MyUserControl)); public int TitleWidth { get { return (int)base.GetValue(TitleWidthProperty); } set { base.SetValue(TitleWidthProperty, value); } } </code></pre> <p>I am creating instances of the Usercontrol in code, hence I have a binding statement similar to this :</p> <pre><code>MyUserControl Cntrl = new MyUserControl(/* Construction Params */); BindingOperations.SetBinding(Cntrl , MyUserControl.AnotherProperty, new Binding { ElementName = "objZoomSlider", Path = new PropertyPath("Value"), Mode = BindingMode.OneWay }); BindingOperations.SetBinding(Cntrl , MyUserControl.TitleWidthProperty, new Binding { ElementName = "TitleSection", Path = new PropertyPath("ActualWidth"), Mode = BindingMode.OneWay }); /* Other operations on Cntrl */ </code></pre> <p>The first binding defined works fantastically, although that is binding to an actual UIElement (in this case a Slider), but the Binding to "TitleSection" (which is the ColumnDefinition defined in the Grid) fails. Putting a breakpoint in the code and doing a watch on "TitleSection" returns the expected object. </p> <p>I am beginning to suspect that a x:Name'd ColumnDefinition can't be bound to. <strong>Can anyone suggest how I might be able to bind to the changing width of the first column in my grid?</strong></p> <p>Ta</p> <p><strong>EDIT #1 - To answer comments</strong></p> <p>The databinding 'fails' in the sense that with a breakpoint set on the setter for the <code>TitleWidth</code> property, and using the GridSplitter control to resize the first column, the breakpoint is never hit. Additionally, code I would expect to be fired when the DependancyProperty <code>TitleWidth</code> changes does not get executed.</p> <p>The usercontrol is being created and added to a Stackpanel within the Grid in the <code>Window_Loaded</code> function. I would expect that the Grid has been rendered by the time the Usercontrols are being constructed. Certainly the x:Name'd Element <code>TitleSection</code> is watchable and has a value of <code>100</code> when they are being constructed / before the binding is happening.</p> <p><strong>EDIT #2 - Possibly something to do with this?</strong></p> <p>I've been having a sniff round the MSDN pages for the Grid ColumnDefinition documentation and have come across <a href="http://msdn.microsoft.com/en-us/library/system.windows.gridlength.aspx" rel="nofollow">GridLength()</a> but I can't get my head around how I can use this in a binding expression. I cannot use the associated GridLengthConverter as a converter in the binding code as it does not derive from IValueConverter. </p> <p>I am leaning towards somehow binding to the ActualWidth property of one of the cells in the Grid object. It doesn't seem as clean as binding to the column definition, but at the moment I cannot get that to work.</p> http://stackoverflow.com/questions/285730/wpf-binding-to-grid-column-width/286084#286084 0 Answer by Paul Betts for WPF Binding to Grid Column Width Paul Betts 2008-11-13T02:27:10Z 2008-11-13T02:27:10Z <p>I believe you're going down the wrong road here - can you explain <em>why</em> you're interested in setting an explicit width here? Why wouldn't you just let the width be the size of the Title? Almost always, if you're setting Widths or Heights in WPF, "you're doing it wrong". Use margins and make everything relatively sized. </p> <p>Also, while a Grid is the most flexible and WinForms'y layout control, you'll often get better resize/layout behavior by nesting StackPanel and DockPanel controls, especially taking advantage of DockPanel's "Last control gets the remaining space" behavior.</p> http://stackoverflow.com/questions/285730/wpf-binding-to-grid-column-width/286695#286695 0 Answer by Ian Oakes for WPF Binding to Grid Column Width Ian Oakes 2008-11-13T09:56:04Z 2008-11-13T09:56:04Z <p>Have you tried setting up the binding in xaml, the following should work for you.</p> <pre><code>&lt;ColumnDefinition x:Name="TitleSection" Width="{Binding Path=TitleWidth, RelativeSource={RelativeSource AncestorType=MyUserControl}}" /&gt; </code></pre> <p>Otherwise, looking at the binding code you've supplied, it looks the wrong way around to me, the target of the binding should be the grid column and the source should be your dependency property. </p> <p>The equivalent code for the above xaml is</p> <pre><code>BindingOperations.SetBinding(TitleSection, ColumnDefinition.WidthProperty, new Binding() { RelativeSource= new RelativeSource(RelativeSourceMode.FindAncestor, typeof(MyUserControl),1), Path = new PropertyPath("TitleWidth"), }); </code></pre> <p>On a related note, using a GridSplitter and binding the Width property are mutally exclusive. As soon as you resize the column using the splitter, your binding will be replaced with the value from the splitter. </p> <p>This is similar to what you would experience by updating any property that is the target of a binding. When you set the targets value directly in code, you are esentially replacing the binding object with the value you supply.</p> http://stackoverflow.com/questions/285730/wpf-binding-to-grid-column-width/286737#286737 2 Answer by Ash for WPF Binding to Grid Column Width Ash 2008-11-13T10:20:22Z 2008-11-13T10:20:22Z <p>Well I have got a bit of a kludge working, I'll explain how for future generations:</p> <p>Essentially I have a 2 column, multi row grid with a splitter right aligned in the first column so it can be resized by the user if the content it contains requires more space. To complicate things I have a user control being loaded programatically into some of the rows which has a columnSpan of 2 for rendering purposes (content 'bleeds' from one cell into the next).</p> <p>When the first column is resized I need this to be reflected in the usercontrol. Firstly I tried binding to the ColumnDefinition but it really wasn't playing ball.</p> <p><strong>How I fixed/Kludged it</strong></p> <p>In a spare cell in the first column I added a <code>&lt;Label&gt;</code> with an x:Name to make it accessible. As it is in a cell it has default properties of 'Stretch' and fills the cell completely. It gets resized as the column is resized using the splitter. Binding to the Label's <code>ActualWidth</code> property means that changes to the size of the column are communicated to the DependancyProperty in my columnSpanned usercontrol correctly.</p> <p><strong>Thoughts</strong></p> <p>Obviously, despite ColumnDefinition having an <code>ActualWidth</code> property when it changes it doesn't appear to fire the <code>PropertyChanged</code> event internally (or thats my best guess). This may be a bug, or by design, but for me it means I've had to use a less clean solution.</p>