获取TextBox中角色的坐标?

时间:2012-11-14 18:27:51

标签: .net wpf textbox

我想通过在所选字段的上方和下方添加Adorner来增强此WPF DateTimePicker control,例如

DateTimePicker

为此,我需要在TextBox中找出选择开始和结束的X坐标。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

(编辑:Derp - 我错过了你的“唯一选择”部分......这会给你全文长度)

您正在寻找的属性是TextBox上的ExtentWidth

(对不起,手头只有LINQPad,所以必须这么做......)

var wnd = new Window();
var panel = new StackPanel();
wnd.Content = panel;

var textBox = new TextBox();
textBox.Name = "theTextBox";
textBox.FontFamily = new FontFamily("Arial");
textBox.FontSize = 20;
textBox.Text = "This is some text I want to measure";
panel.Children.Add(textBox);

wnd.Show();

var showWidth = new TextBlock();
showWidth.Text = "This should show the size of the text";
var binding = new System.Windows.Data.Binding();
binding.Path = new PropertyPath("ExtentWidth");
binding.Source = textBox;
binding.Mode = System.Windows.Data.BindingMode.OneWay;
showWidth.SetBinding(TextBlock.TextProperty, binding);
panel.Children.Add(showWidth);

编辑#2:好的,试试这个:(再次,只有LINQPad)

void Main()
{
    var wnd = new Window();
    var panel = new StackPanel();
    var textBox = new TextBox();
    textBox.FontSize = 20;
    textBox.Text = "This is some text I want to measure";
    textBox.SelectionChanged += OnSelectionChanged;
    showWidth = new TextBlock();
    panel.Children.Add(textBox);
    panel.Children.Add(showWidth);
    wnd.Content = panel;
    wnd.Show();
}

private TextBlock showWidth;

private void OnSelectionChanged(object sender, EventArgs args)
{
    var tb = sender as TextBox;
    double left = tb.GetRectFromCharacterIndex(tb.SelectionStart).Left;
    showWidth.Text = string.Format("{0:0}px", left);
    showWidth.Margin = new Thickness(left, 0, 0, 0);
}