'Auto' value in binding property 'width'

Posted by Ivan on Stack Overflow See other posts from Stack Overflow or by Ivan
Published on 2011-11-12T17:47:48Z Indexed on 2011/11/12 17:51 UTC
Read the original article Hit count: 271

Filed under:
|
|
|
|

Must attach to the property Width, what I'm doing this:

     <ColumnDefinition Width="{Binding Path=TabPanelWidth, RelativeSource={RelativeSource TemplatedParent}}" />

-

     public float TabPanelWidth
     {
         get {return (float) GetValue (TabPanelWidthProperty);}
         set {SetValue (TabPanelWidthProperty, value);}
     }
     public static readonly DependencyProperty TabPanelWidthProperty = DependencyProperty.Register ("TabPanelWidth", typeof (float), typeof (BivTabControl), new UIPropertyMetadata (null));

But vozmozhnast need to set not only fixed values, but still a value of type: Auto, 0.5 *, and the like. Any ideas?

© Stack Overflow or respective owner

Related posts about wpf

Related posts about binding