我想阻止用户编辑/选择组合框。我尝试使用cmbbox.IsReadOnly = True
和cmbbox.IsEditable = False
,允许用户按alt
和arrow' keys
更改选择。 cmbbox.isEnabled = False
有效,我的要求是在禁用时将组合框前景色更改为“黑色”。有人可以帮我解决一下吗?
在XAML中:
<telerik:RadComboBox Grid.Row="0" Grid.Column="2" Grid.ColumnSpan="2" x:Name="combobox1" IsEditable="True" IsFilteringEnabled="True" ItemsSource="{Binding}" TabIndex="7" Style="{ DynamicResource DropDownListStyle }" IsTabStop="True" KeyboardNavigation.TabNavigation ="Local" SelectAllTextEvent="None" Height="23" Margin="0,0,0,2" VerticalAlignment="Center"/>
在Codebehind中:
combobox1.IsEnabled = False
风格:
<Style x:Name="DropDownListStyle" x:Key="DropDownListStyle" TargetType="telerik:RadComboBox" >
<Setter Property="Foreground" Value="#FF000000"/>
<Setter Property="BorderBrush" Value="#ffcccccc"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="HorizontalContentAlignment" Value="Left" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="FontSize" Value="12"/>
<Setter Property="FontWeight" Value="Thin"/>
<Setter Property="FontFamily" Value="Trebuchet MS"/>
<Setter Property="Panel.ZIndex" Value="10" />
<Setter Property="Height" Value="23" />
<!-- <Setter Property="Focusable" Value="True"/> -->
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="White"/>
<Setter Property="Foreground" Value="Black"/>
</Trigger>
</Style.Triggers>
</Style>
答案 0 :(得分:0)
如果您想要阻止用户在不使用ReadOnly或Enabled的情况下更改此组合框,您可以在组合框SelectedIndexChanged事件中尝试此操作。
但是,如果没有看到您的代码,我们无法解决特定问题。
'Inform the user
MsgBox("You can't change this drop down")
'Reset any choice
e.NewValue = e.CurrentValue
e是选择所选索引更改事件时传入的事件参数。
答案 1 :(得分:0)
我已通过将ldapadd -x -D cn=admin,dc=test,dc=dom -W -f add_user.ldif
属性设置为IsReadonly = True
并触发combobox
事件来解决此问题。
PreviewKeyDown
和
combobox1.IsReadonly = True