silverlight无法刷新layoutControl超过5 - 30倍

时间:2013-11-20 00:18:12

标签: c# silverlight xaml xamlreader

我有简单的xaml页面:

    <Grid x:Name="LayoutRoot" dx:ThemeManager.ApplyApplicationTheme="True" Background="White" ShowGridLines="False"  >
        <Grid.RowDefinitions>
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="600" />
            <ColumnDefinition Width="*" />
        </Grid.ColumnDefinitions>

        <dxlc:LayoutControl Name="lc" Height="200" Width="400" Orientation="Vertical"    />

        <Button Content="Test" Click="button_Click" Grid.Row="1"/>

    </Grid>

按钮处理程序看起来是这样的:

        private void button_Click(object sender, RoutedEventArgs e)
    {
        Style style;
        LayoutItem li;
        Sbo sbo;
        string xamlStyle = @"<Style  
TargetType=""dxlc:LayoutItem""
xmlns:x=""bla bla schemas.microsoft.com/winfx/2006/xaml"" 
xmlns=""bla bla schemas.microsoft.com/winfx/2006/xaml/presentation""
xmlns:dxlc=""bla bla schemas.devexpress.com/winfx/2008/xaml/layoutcontrol""

>

</Style>";

        this.lc.DeleteChildren();
        this.lc.AvailableItems.Clear();

        li = new LayoutItem();


        style = XamlReader.Load(xamlStyle) as Style;
        Style basedOnStyle = App.Current.Resources["DefaultLayoutItemStyle"] as Style;
        style.BasedOn = basedOnStyle;

        li.Style = style;

        sbo = new Sbo() { IsRequired = true, Label = "any label" };
        li.DataContext = sbo;
        this.lc.Children.Add(li);
    }

问题是,我只能运行此方法约30次。在我的实际应用中,它最多可以进行2-4次尝试

之后,应用程序崩溃在这一行:

li.Style = style;

我的风格看起来像这样:

<Style TargetType="dxlc:LayoutItem" x:Name="DefaultLayoutItemStyle">
            <Setter Property="IsRequired" Value="{Binding IsRequired}"  />
            <Setter Property="Label" Value="{Binding Label}" />
        </Style>

问题在于IsRequired biding。 Silverlight无法获取该依赖项属性的get_value。它看起来像30 x XamlReader.Load太多了......

你有什么提示如何解决这个问题?

我需要动态加载样式,因为用户可以修改它们。

我试图动态加载MergedDictionaries但结果是一样的。

非常感谢你。

汤姆

1 个答案:

答案 0 :(得分:0)

我找到了它。您需要为样式分配样式并将其存储在资源中。在那之后我无法达到任何限制。