XAML : Binding textbox maxlength to Class constant - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T08:05:06Zhttp://stackoverflow.com/feeds/question/232986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/232986/xaml-binding-textbox-maxlength-to-class-constant1XAML : Binding textbox maxlength to Class constantAsh2008-10-24T10:11:40Z2008-10-24T12:42:22Z
<p>I am attempting to bind a WPF textbox's Maxlength property to a known constant deep within a class. I am using c#.</p>
<p>The class has a structure not too dissimilar to the following:</p>
<pre><code>namespace Blah
{
public partial class One
{
public partial class Two
{
public string MyBindingValue { get; set; }
public static class MetaData
{
public static class Sizes
{
public const int Length1 = 10;
public const int Length2 = 20;
}
}
}
}
}
</code></pre>
<p>Yes it is deeply nested, but unfortunately in this instance I can't move things round very much without huge rewrites required.</p>
<p>I was hoping I'd be able to bind the textbox MaxLength to the Length1 or Length2 values but I can't get it to work.</p>
<p>I was expecting the binding to be something like the following:</p>
<pre><code><Textbox Text="{Binding Path=MyBindingValue}" MaxLength="{Binding Path=Blah.One.Two.MetaData.Sizes.Length1}" />
</code></pre>
<p>Any help is appreciated.</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/232986/xaml-binding-textbox-maxlength-to-class-constant/232996#2329960Answer by Joachim Kerschbaumer for XAML : Binding textbox maxlength to Class constantJoachim Kerschbaumer2008-10-24T10:17:50Z2008-10-24T10:17:50Z<p>try to bind with x:Static. add a xmlns:local namespace with the namespace of Sizes to your xaml header and then bind with something like this:</p>
<pre><code>{x:Static local:Sizes.Length1}
</code></pre>
http://stackoverflow.com/questions/232986/xaml-binding-textbox-maxlength-to-class-constant/233017#2330170Answer by Ash for XAML : Binding textbox maxlength to Class constantAsh2008-10-24T10:31:47Z2008-10-24T10:31:47Z<p>Unfortunately, with the following I get the error <code>Type 'One.Two.MetaData.Sizes' not found</code>. I cannot create a local namespace deeper than "Blah" (well according to VS2008 anyway)</p>
<pre><code>xmlns:local="clr-namespace:Blah"
</code></pre>
<p>and</p>
<pre><code>MaxLength="{x:Static local:One.Two.MetaData.Sizes.Length1}"
</code></pre>
http://stackoverflow.com/questions/232986/xaml-binding-textbox-maxlength-to-class-constant/233034#2330340Answer by Joachim Kerschbaumer for XAML : Binding textbox maxlength to Class constantJoachim Kerschbaumer2008-10-24T10:39:55Z2008-10-24T10:39:55Z<p>if One is not a static class you cannot bind to it with x:Static. why using inner classes? if metadata is outside of two, and Sizes is a property, you can easily access it with x:Static.
you cannot bind to types in this case, only to existing objects. but One and Two are types, not objects.</p>
http://stackoverflow.com/questions/232986/xaml-binding-textbox-maxlength-to-class-constant/233061#2330612Answer by stusmith for XAML : Binding textbox maxlength to Class constantstusmith2008-10-24T10:48:29Z2008-10-24T10:48:29Z<pre><code>MaxLength="{x:Static local:One+Two+MetaData+Sizes.Length1}"
</code></pre>
<p>Periods reference properties. Plus signs refer to inner classes.</p>
http://stackoverflow.com/questions/232986/xaml-binding-textbox-maxlength-to-class-constant/233355#2333550Answer by Ash for XAML : Binding textbox maxlength to Class constantAsh2008-10-24T12:42:22Z2008-10-24T12:42:22Z<p>Fixed!</p>
<p>Initially I tried doing this:</p>
<pre><code>{Binding Path=MetaData+Sizes.Length1}
</code></pre>
<p>which compiled ok, however the binding failed at runtime, despite the Class 'Two' being the datacontext the path couldn't resolve into the inner static classes (could I have done something like : {Binding Path={x:Static MetaData+Size.Length1}} ?)</p>
<p>I had to fiddle with the layout of my classes a little but the binding is now working.</p>
<p>New class structure:</p>
<pre><code>namespace Blah
{
public static class One
{
// This metadata class is moved outside of class 'Two', but in this instance
// this doesn't matter as it relates to class 'One' more specifically than class 'Two'
public static class MetaData
{
public static class Sizes
{
public static int Length1 { get { return 10; } }
public static int Length2 { get { return 20; } }
}
}
public partial class Two
{
public string MyBindingValue { get; set; }
}
}
}
</code></pre>
<p>Then my binding statement is as follows:</p>
<pre><code>xmlns:local="clr-namespace:Blah"
</code></pre>
<p>and</p>
<pre><code>MaxLength="{x:Static local:MetaData+Sizes.Length1}"
</code></pre>
<p>Which appears to work ok. I'm not sure whether or not the constants needed to be converted into properties, but there doesn't appear to be any harm in doing so.</p>
<p>Thankyou everyone for your help!</p>