这是XAML:
<Window x:Class="WpfApp1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<TextBox Text="{Binding CB+Width,RelativeSource={RelativeSource AncestorType={x:Type Window}},Mode=TwoWay}"></TextBox>
</Grid>
</Window>
这是代码背后:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WpfApp1
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
TB = new TextBox();
TB.Width = 200;
}
public ComboBox CB
{
get { return (ComboBox)GetValue(CBProperty); }
set { SetValue(CBProperty, value); }
}
// Using a DependencyProperty as the backing store for CB. This enables animation, styling, binding, etc...
public static readonly DependencyProperty CBProperty =
DependencyProperty.Register("CB", typeof(ComboBox), typeof(MainWindow), null);
}
}
实际上,DependencyProperty
是一个自定义控件,但为了方便向您解释我的问题,我将其替换为ComboBox
。
自定义控件不在同一窗口中,我想将其值诸如Width
绑定到TextBox
。
自定义控件在另一个窗口中。这意味着有两个窗口,窗口1和窗口2。自定义控件在窗口1中,文本框在窗口2中。之所以这样做,是因为一个是主窗口,另一个是设置窗口。每当设置窗口更改设置时,您都可以在主窗口中立即看到它。因此,我使用DependencyProperty将自定义控件存储在另一个窗口中,并将其绑定到文本框。
现在我该怎么办?你能帮我吗?谢谢。
答案 0 :(得分:0)
看起来像希望文本框显示Window的width属性吗? (或将来进行测试的其他一些控件)。如果将x:Name值应用于控件,则可以直接在XMAL中引用该控件,然后直接在其上引用属性。不需要任何其他具有您自己的依赖项属性的自定义其他控件……类似。
<Window x:Class="WpfApp1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800"
x:Name="myOuterWindowControl" >
<Grid>
<TextBox Text="{Binding ElementName=myOuterWindowControl, Path=Width, Mode=TwoWay,
UpdateSourceTrigger=LostFocus}" Height="30" Width="70"
HorizontalAlignment="Left" VerticalAlignment="Top"/>
<TextBox Height="30" Width="70"
HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,50,0,0"/>
</Grid>
</Window>
现在,我实际上添加了一个额外的文本框控件,因此XAML中有多个控件可以更改焦点。原因。我将文本框设置为允许模式为双向绑定。窗口将推送到文本框,但是您也可以在文本框中键入一个值,并且在发生LOST FOCUS时,它将值推回到窗口中,并且您可以动态更改宽度(或其他属性高度,颜色, )。
这更符合您想要达到的目标吗?