我创建其中包含一些conrols(按钮和复选框),一个用户控件。
之后,我加入到我的WPF窗口用户控件的引用。
我想要做的是:当我在一个按钮,在用户控件此按钮触发一个动作单击并更改Windows(Textbox1.Text =“东西”)的东西。
我的问题是,我无法从用户控件访问控制Windows的内部。
任何帮助吗?
EDIT
:添加代码示例
<s:SurfaceWindow x:Class="Project.Temp.MainSurface"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://schemas.microsoft.com/surface/2008"
xmlns:local="clr-namespace:Project"
Title="Project.Temp"
>
<Grid x:Name="Root" ... >
<Grid x:Name="Child" ... >
<local:MyUserControl x:Name="UserControlStart" ... />
</Grid>
...
</Grid>