我有两个值的功能区组合 - 如何将文本框绑定到其中一个值?所以如果组合关闭 - 文本框被禁用? 我的组合
<RibbonComboBox x:Name="combo1" IsEditable="True">
<RibbonGallery x:Name="content1" SelectedValue="OFF"
SelectedValuePath="Content"
MaxColumnCount="1">
<RibbonGalleryCategory>
<RibbonGalleryItem Content="ON" />
<RibbonGalleryItem Content="OFF" />
</RibbonGalleryCategory>
</RibbonGallery>
</RibbonComboBox>
还有我的文字框样式:
<TextBox.Style>
<Style TargetType="TextBox">
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=???no combo1 nor content1
</Style.Triggers>
</Style>
</TextBox.Style>
问题是建议名称的下拉列表中没有combo1或content1名称 - 所以我认为这些元素是不可见的?
我可以看到StackPanel(保持combo1控制),但是如何在XAML中访问这个combo1或内容1?
对不起这个问题 - 所有可见性问题都通过重建解决了......