0

我已经知道如何使用 XAML 用户控件中的依赖属性来编写用户控件和访问内部控件属性。

我的问题是,如何在用户控件中访问控件本身。例如,

用户控制: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 Propertywith一样给出Binding,但有时我需要访问内部控件,因为控件的每个属性都不是完全可绑定的。

4