<telerik:RadAutoCompleteBox
Style="{StaticResource someStyle}"
WatermarkContent="{ext:LocalizedText Key=someKey}"
SearchText="{Binding SearchTextBox, Mode=TwoWay}"
TextSearchMode="Contains" IsTabStop="False" Height="34">
<telerik:RadAutoCompleteBox.InputBindings>
<KeyBinding Key="Enter" Command="{Binding someCommand}"/>
</telerik:RadAutoCompleteBox.InputBindings>
</telerik:RadAutoCompleteBox>
我试过MaxLength
,但显然没有支持这样的属性。
答案 0 :(得分:0)
Doesn't look like there's any max length properties for that specific control by default.
但是,您应该能够轻松地操纵您使用Command
属性绑定的方法,首先检查文本框并确保它不超过一定数量的字符。
如果是,请停止执行该命令。如果没有,那就继续。