Silverlight {绑定密钥} - 请刷新我的记忆?

发布于 2024-12-08 11:04:01 字数 885 浏览 0 评论 0原文

我确信这很简单,但是我到底错过了什么?有人可以告诉我 Text="{Binding Key}" 中关键字“Key”引用的是什么吗?我知道我以前学过,但我似乎不记得了。我了解数据绑定的工作原理,只是停留在这个特定问题上。

 <DataTemplate x:Key="groupItemHeader">
            <Border Background="{StaticResource PhoneAccentBrush}"
                    Width="432" Height="62"
                    Margin="6" Padding="12,0,0,6">
                <TextBlock Text="{Binding Key}" 
                           Foreground="#FFFFFF" FontSize="26.667"
                           HorizontalAlignment="Left"
                           VerticalAlignment="Bottom"
                           FontFamily="{StaticResource PhoneFontFamilySemiBold}"/>
                <Border.Projection>
                    <PlaneProjection RotationX="-60"/>
                </Border.Projection>
            </Border>
        </DataTemplate>

I'm sure this is simple, but what the hell am I missing here? Can someone tell me what the keyword "Key" is referencing in Text="{Binding Key}"? I know I learned about it previously, but I cannot seem to remember. I understand how databinding works, just stuck on this particular issue.

 <DataTemplate x:Key="groupItemHeader">
            <Border Background="{StaticResource PhoneAccentBrush}"
                    Width="432" Height="62"
                    Margin="6" Padding="12,0,0,6">
                <TextBlock Text="{Binding Key}" 
                           Foreground="#FFFFFF" FontSize="26.667"
                           HorizontalAlignment="Left"
                           VerticalAlignment="Bottom"
                           FontFamily="{StaticResource PhoneFontFamilySemiBold}"/>
                <Border.Projection>
                    <PlaneProjection RotationX="-60"/>
                </Border.Projection>
            </Border>
        </DataTemplate>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独患者 2024-12-15 11:04:01

{Binding Key}{Binding Path=Key} 的简写。这将返回当前 DataContext 上的 Key 属性的值。

{Binding Key} is shorthand for {Binding Path=Key}. This will return the value of the Key property on the current DataContext.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文