我正在使用Mvvm-Light并且一直忽视XAML中的绑定到目前为止是如何工作的。
这是我的XAML
<phone:PhoneApplicationPage.Resources>
</phone:PhoneApplicationPage.Resources>
<Grid x:Name="LayoutRoot" Background="Transparent">
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,14">
<TextBlock x:Name="ApplicationTitle" Text="{Binding SecuritySystemName}" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock x:Name="PageTitle" Text="{Binding PageName}" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
<TextBlock Name="textCode"
DataContext="{WHAT GOES HERE to bind to properties on my View (SecurityPanelPage class)}"
Text="{Binding Path=Code}" />
</Grid>
{Binding SecuritySystemName}和{Binding PageName}正确绑定到我的ViewModel(SecuirtyPanelViewModel)。但我希望TextBlock元素中的{Binding Code}绑定到我的VIEW(而不是ViewModel)。
我搜索并搜索了文档&amp;解释DataContext和Binding支持的语法和值的示例。没有任何帮助。
我想知道的是我如何设置一个DataContext(或在{Binding ...}中指定一些指向我的View对象的东西。我尝试过“Self”和各种“RelativeSource”的东西猜测没有效果,因为在解析XAML之前进入调试器的过程太长了。
感谢。
更新 - 我找到了一个让我感动的答案,但我仍然没有理解,所以我对下面的精美海报进行了跟进。
这是有效的:
<phone:PhoneApplicationPage x:Name="ThisPage">
<TextBlock Name="textCode" Text="{Binding Code, ElementName=ThisPage"/>
</phone:PhoneApplicationPage>
我在这里找到了这个提示:http://bursjootech.blogspot.com/2007/12/bind-from-xaml-to-local-property-in.html
他以不同的方式提出这个问题:如何“在代码隐藏中将XAML绑定到本地属性”。
我仍然不明白下面提供的两种解决方案。以下更多问题......
答案 0 :(得分:5)
通常,当您使用MVVM时,几乎所有可绑定属性都在ViewModel上,而不在View上。但是,显然有时您需要创建具有属性的组件控件。你能解释一下这个属性是什么以及为什么它只需要成为视图中的属性吗?
有人说......我猜你的SecurityPanelPage是显示XAML的视图?
您可以为控件命名,然后使用ElementName绑定。这样您就不需要设置DataContext。
<phone:PhoneApplicationPage
x:Name="controlName"
x:Class="SomeNamespace.SecurityPanelPage">
</phone:PhoneApplicationPage>
然后你的绑定变为:
<TextBlock
Name="textCode"
Text="{Binding Path=Code, ElementName=controlName}" />
要显式设置DataContext,您可以执行以下操作:
<TextBlock
Name="textCode"
DataContext="{Binding ElementName=controlName}"
Text="{Binding Path=Code}" />
答案 1 :(得分:1)
如果我没错,您可以将app.xaml中的资源添加到您想要的视图中。
A.E:
xmlns:crap="clr-namespace:Application.Views"
<Application.Resources>
<ResourceDictionary>
<crap:MyViewPage x:Key="MyViewPage" />
</ResourceDictionary>
</Application.Resources>
然后像"{Binding MyProperty, source={StaticResource MyViewPage}".
希望这有效/帮助