我创建了一个名为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;
}
}
}
}
}
到目前为止,这么好。我可以快速创建一个&#34;浏览...&#34; XAML中的按钮。 然而,我无法让TextBoxDependency
按照我希望的方式工作。
我希望能做的就是这样(XAML):
<TextBox x:Name="MyTextBox" />
<extensions:BrowseButton TextBox="MyTextBox" />
然而,当我放弃它时说:
TypeConverter for&#34; TextBox&#34;不支持从字符串转换。
有没有办法完成我想要做的事情?要有效地引用XAML元素中的另一个XAML元素,而不必离开XAML来执行它?
答案 0 :(得分:1)
使用绑定:
<TextBox x:Name="MyTextBox" />
<extensions:BrowseButton TextBox="{Binding ElementName=MyTextBox}" />