我的视图模型中有一个 cursorposition 属性,它决定了光标在视图文本框中的位置。如何将 cursorposition 属性绑定到文本框中光标的实际位置。
问问题
2234 次
2 回答
1
恐怕你不能......至少不能直接,因为 TextBox 控件上没有“CursorPosition”属性。
您可以通过在代码隐藏中创建一个 DependencyProperty、绑定到 ViewModel 并手动处理光标位置来解决该问题。这是一个例子:
/// <summary>
/// Interaction logic for TestCaret.xaml
/// </summary>
public partial class TestCaret : Window
{
public TestCaret()
{
InitializeComponent();
Binding bnd = new Binding("CursorPosition");
bnd.Mode = BindingMode.TwoWay;
BindingOperations.SetBinding(this, CursorPositionProperty, bnd);
this.DataContext = new TestCaretViewModel();
}
public int CursorPosition
{
get { return (int)GetValue(CursorPositionProperty); }
set { SetValue(CursorPositionProperty, value); }
}
// Using a DependencyProperty as the backing store for CursorPosition. This enables animation, styling, binding, etc...
public static readonly DependencyProperty CursorPositionProperty =
DependencyProperty.Register(
"CursorPosition",
typeof(int),
typeof(TestCaret),
new UIPropertyMetadata(
0,
(o, e) =>
{
if (e.NewValue != e.OldValue)
{
TestCaret t = (TestCaret)o;
t.textBox1.CaretIndex = (int)e.NewValue;
}
}));
private void textBox1_SelectionChanged(object sender, RoutedEventArgs e)
{
this.SetValue(CursorPositionProperty, textBox1.CaretIndex);
}
}
于 2009-06-11T10:05:10.700 回答
0
您可以使用 CaretIndex 属性。但是它不是 DependencyProperty 并且似乎没有实现 INotifyPropertyChanged 所以你不能真正绑定到它。
于 2009-06-29T21:07:02.917 回答