最简单的方法是将最大字符数设置为文本框

时间:2015-08-20 03:08:40

标签: c# wpf xaml telerik

<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,但显然没有支持这样的属性。

1 个答案:

答案 0 :(得分:0)

Doesn't look like there's any max length properties for that specific control by default.

但是,您应该能够轻松地操纵您使用Command属性绑定的方法,首先检查文本框并确保它不超过一定数量的字符。

如果是,请停止执行该命令。如果没有,那就继续。