<div>Hi,</div>
<div> </div>
<div> I am trying out some sample Silverlight code with IronPython and I found that the data binding does not work properly.</div>
<div>The app.xaml is as below:</div>
<div> </div>
<div><UserControl x:Class="System.Windows.Controls.UserControl"<br> xmlns="<a href="http://schemas.microsoft.com/client/2007">http://schemas.microsoft.com/client/2007</a>"<br> xmlns:x="<a href="http://schemas.microsoft.com/winfx/2006/xaml">http://schemas.microsoft.com/winfx/2006/xaml</a>"><br>
<Grid x:Name="layout_root" Background="White"><br> <StackPanel><br> <Slider x:Name="sliderFontSize" Margin="3" Minimum="1" Maximum="40" Value="10" /><br>
<TextBlock x:Name="lblMessage" Text="Hello World" Margin="5" FontSize="{Binding ElementName=sliderFontSize, Path=Value,Mode=TwoWay}"></TextBlock><br> <Button x:Name="cmdClickMe" Content="Click Me!" Margin="5"></Button><br>
</StackPanel><br> </Grid><br></UserControl><br></div>
<div>This XAML when used in a C# Silverlight app reflects the correct data binding behaviour but does not work when used with IronPython and Chiron. Mainly the font size of the text block is not updated.</div>
<div>Does anyone have any idea about this?</div>
<div> </div>
<div>Thanks,</div>
<div>Shyam</div>