选择单元格条目上的所有 Silverlight DataGrid 单元格文本

发布于 2024-11-14 12:42:08 字数 758 浏览 3 评论 0原文

我在 SL4 中有一个 DataGrid,其中有一个简单的 DataGridTextColumn 列。

我尝试了多种不同的方法,以便在单元格更改为可编辑文本框后立即选择 DataGridCell 中的所有文本。

下面的代码是我最后一次尝试。

在调试中检查 TextBox 显示 SelectedText 属性等于 Text 属性。所以问题不在于文本框。似乎后来有什么东西取消了对文本的选择。

public void PreparingCellForEdit(DataGridPreparingCellForEditEventArgs e)
    {
        var textBox = e.EditingElement as TextBox;
        if (textBox != null && !string.IsNullOrEmpty(textBox.Text))
        {
            textBox.GotFocus += (s, e2) =>
                {
                    {
                        textBox.SelectAll();
                    }
                };
        }
    }

有什么想法如何保持文本被选中并向用户显示带有所选文本的文本框吗?

PS 我正在使用 Cliburn.Micro 附加 PreparingCellForEdit 事件。

I have a DataGrid in SL4 with a simple DataGridTextColumn columns.

I've tried a number of different methods to select all the text in a DataGridCell as soon as the cell changes to an editable TextBox.

The code below was my last attempt.

Inspecting the TextBox in debug shows that the SelectedText property is equal to the Text property. So the problem isn't the TextBox. It seems something is deselecting the text later on.

public void PreparingCellForEdit(DataGridPreparingCellForEditEventArgs e)
    {
        var textBox = e.EditingElement as TextBox;
        if (textBox != null && !string.IsNullOrEmpty(textBox.Text))
        {
            textBox.GotFocus += (s, e2) =>
                {
                    {
                        textBox.SelectAll();
                    }
                };
        }
    }

Any ideas how to keep the text selected and display the TextBox with the selected text to the user?

P.S. I am using Cliburn.Micro to attach the PreparingCellForEdit event.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

残月升风 2024-11-21 12:42:08

对我来说效果更好的是:

public void PreparingCellForEdit(DataGridPreparingCellForEditEventArgs e)
{
    var textBox = e.EditingElement as TextBox;
    if (textBox != null)
    {
        textBox.Dispatcher.BeginInvoke(() => textBox.SelectAll());
    }
}

What works better for me is the following:

public void PreparingCellForEdit(DataGridPreparingCellForEditEventArgs e)
{
    var textBox = e.EditingElement as TextBox;
    if (textBox != null)
    {
        textBox.Dispatcher.BeginInvoke(() => textBox.SelectAll());
    }
}
空袭的梦i 2024-11-21 12:42:08

某种解决方案是在附加到 GotFocus 事件后将焦点强制到 TextBox

像这样:

    public void PreparingCellForEdit(DataGridPreparingCellForEditEventArgs e)
    {
        var textBox = e.EditingElement as TextBox;
        if (textBox != null)
        {
            textBox.GotFocus += (s, e2) => textBox.SelectAll();
            textBox.Focus();
        }
    }

Somewhat of solution is to force focus to the TextBox after attaching to the GotFocus event.

Like this:

    public void PreparingCellForEdit(DataGridPreparingCellForEditEventArgs e)
    {
        var textBox = e.EditingElement as TextBox;
        if (textBox != null)
        {
            textBox.GotFocus += (s, e2) => textBox.SelectAll();
            textBox.Focus();
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文