访问控件不是XAML用户控件中的属性

时间:2013-09-13 07:20:00

标签: c# xaml user-controls windows-store-apps

我已经知道如何使用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,但我有时需要访问内部控件,因为控件的每个属性都不是完全可绑定的。