我已经知道如何使用XAML用户控件中的依赖项属性来组合用户控件和访问内部控件属性。
我的问题是,如何在User Control中访问控件本身。 例如,
用户控制:TbCanvas.xaml
<UserControl
x:Class="Sample.Control.TbCanvas"
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"
d:DesignHeight="300"
d:DesignWidth="400"
x:Name="root">
<Grid>
<Image x:Name="imageMain" />
</Grid>
</UserControl>
我想在一些具有以上用户控制权的Page
中使用它。
SomePage.xaml.cs
this.tbCanvas.imageMain.Source = "some_path";
当然,Source
可以Dependency Property
作为Binding
,但我有时需要访问内部控件,因为控件的每个属性都不是完全可绑定的。