本文介绍了我们可以在Silverlight 4中使用数据上下文的几种方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们可以在Silverlight 4中使用数据上下文的几种方法.


当我们在XMAL中使用DataContext以及当在代码中使用DataContext时,例如(Main.xmal.cs)

How many ways we can use datacontext in silverlight 4 .


when we use DataContext In XMAL and when we use DataContext in code behand like (Main.xmal.cs)

推荐答案

<UserControl ...>
    <UserControl.Resources>
       <myNS:MyClass x:Name="TheContext" x:Key="TheContext"></myNS:MyClass>
    </UserControl.Resources>
    <Grid x:Name="LayoutRoot" Background="White" DataContext="{StaticResource TheContext}" >
        <TextBlock Text="{Binding Path=Field1}">
        </TextBlock>
    </Grid>
</UserControl>


这篇关于我们可以在Silverlight 4中使用数据上下文的几种方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 18:09