我可以创建一个接受XAML元素的DependencyProperty吗?

本文关键字:元素 XAML DependencyProperty 创建 一个 我可以 | 更新日期: 2023-09-27 18:07:08

我创建了一个自定义类BrowseButton,它扩展了Button。这个按钮相当简单;当点击它弹出一个文件选择对话框。我将它创建为自己的特殊类,因为我希望能够在我的应用程序中快速、轻松地重用它。在用户成功选择文件之后,我还希望它在同一页面上填充一个TextBox控件,并提供完整的文件路径。

下面是我的(c#)代码看起来像按钮:

using System;
using System.Windows;
using System.Windows.Controls;
using Microsoft.Win32;
namespace MyProject.Extensions
{
    public partial class BrowseButton : Button
    {
        public static readonly DependencyProperty DefaultExtDependency = DependencyProperty.Register("DefaultExt", typeof(string), typeof(BrowseButton));
        public static readonly DependencyProperty FilterDependency = DependencyProperty.Register("Filter", typeof(string), typeof(BrowseButton));
        public static readonly DependencyProperty TextBoxDependency = DependencyProperty.Register("TextBox", typeof(TextBox), typeof(BrowseButton));
        public string DefaultExt
        {
            get
            {
                return (string)GetValue(DefaultExtDependency);
            }
            set
            {
                SetValue(DefaultExtDependency, value);
            }
        }
        public string Filter
        {
            get
            {
                return (string)GetValue(FilterDependency);
            }
            set
            {
                SetValue(FilterDependency, value);
            }
        }
        public TextBox TextBox
        {
            get
            {
                return (TextBox)GetValue(TextBoxDependency);
            }
            set
            {
                SetValue(TextBoxDependency, value);
            }
        }
        public BrowseButton()
        {
            InitializeComponent();
        }
        public event EventHandler<string> FileSelected;
        public void Connect(int connectionId, object target)
        {
        }
        private void BrowseButton_OnClick(object sender, RoutedEventArgs e)
        {
            var dialog = new OpenFileDialog
            {
                DefaultExt = DefaultExt,
                Filter = Filter
            };
            var result = dialog.ShowDialog();
            if (result == true)
            {
                if (FileSelected != null)
                {
                    FileSelected(this, dialog.FileName);
                }
                if (TextBox != null)
                {
                    TextBox.Text = dialog.FileName;
                }
            }
        }
    }
}

到目前为止,一切顺利。我可以在XAML中快速创建一个"浏览…"按钮。然而,我不能得到TextBoxDependency工作的方式,我希望它会工作。

我想要做的是像这样(XAML):

<TextBox x:Name="MyTextBox" />
<extensions:BrowseButton TextBox="MyTextBox" />

然而,当我把它放进去时,它说:

"TextBox"的TypeConverter不支持从字符串转换。

有什么方法可以完成我想在这里做的事情吗?在一个XAML元素内部有效地引用另一个XAML元素,而不必让XAML来做这件事?

我可以创建一个接受XAML元素的DependencyProperty吗?

使用绑定:

<TextBox x:Name="MyTextBox" />
<extensions:BrowseButton TextBox="{Binding ElementName=MyTextBox}" />