我在app.xaml
中定义了一种风格。这个样式包含几个文本TextBlocks,当我将样式应用于对象时,我想控制它,在本例中是UserPin。
如何访问这些TextBlocks运行时?
我得到的风格是:
Style = Application.Current.Resources["UserPin"] as Style;
样式如下:
<Style x:Name="UserPin" TargetType="RRML_UserControls:UserPin" >
<Setter Property="RenderTransformOrigin" Value="0.5,0.5" />
<Setter Property="AnchorPoint" Value="0.5,0.5" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="RRML_UserControls:UserPin">
<Grid Height="71.969" Width="Auto">
<Grid.RenderTransform>
<ScaleTransform x:Name="PART_PinScale" />
</Grid.RenderTransform>
<Grid.RowDefinitions>
<RowDefinition Height="29"/>
<RowDefinition Height="16"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.247*"/>
<ColumnDefinition Width="20"/>
<ColumnDefinition Width="0.753*"/>
</Grid.ColumnDefinitions>
<Image Height="Auto" Source="Resources/Users.png" x:Name="PART_imgUser" VerticalAlignment="Top" Stretch="Uniform" Margin="0,0,0,0" Grid.Column="1">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform/>
<TranslateTransform/>
</TransformGroup>
</Image.RenderTransform>
</Image>
<TextBlock HorizontalAlignment="Center" Margin="0,0,0,0" Width="Auto" Grid.Column="0" Grid.ColumnSpan="3" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Center" TextAlignment="Center" x:Name="txtBottom" Text="{Binding Mode=OneWay, Path=LocationName}">
<TextBlock.DataContext>
<RRML_RRMLServiceReference:Location LocationName="Initial Name"/>
</TextBlock.DataContext>
</TextBlock>
<TextBlock HorizontalAlignment="Right" Margin="0,0,0,0" VerticalAlignment="Center" Text="L" TextWrapping="Wrap"/>
<TextBlock Margin="0,0,0,0" Text="R" TextWrapping="Wrap" d:LayoutOverrides="Width, Height" Grid.Column="2" HorizontalAlignment="Left" VerticalAlignment="Center"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
我尝试设置的TextBlock
值为txtBottom
。
如您所见,我尝试将datacontext和数据绑定应用于该字段。这样可行,但所有对象当然都会获得值“初始名称”。
我的问题是:
txtBottom.Text
更改,或TextBlock
的{{1}}的值?运行时间:) 到目前为止,我发现触发器只能在WPF中使用。
我想到这样的事情:
txtBottom
var styledobject = new NiceObject();
styledobject.Style = Application.Current.Resources["UserPin"] as Style;
styledobject.DataContext = locationData;
是包含数据的对象。
如果有人想知道;我在地图上放置图标并想要命名。
答案 0 :(得分:2)
您不应在DataContext
上明确应用TextBlock
。 DataContext
由子FrameworkElements
继承。您应该尝试将数据上下文显式设置为尽可能少的视觉树(为了您自己的理智: - ))
如果这是自定义控件,您可以覆盖OnApplyTemplate
方法并使用GetTemplateChild(string name)
检索对象中指定元素的引用。
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
TextBlock txtBottom = GetTemplateChild("txtBottom") as TextBlock;
}
在外部,如果必须,您可以使用扩展方法在运行时以命令方式访问该特定控件,以遍历可视树以按名称查找它。
public static T FindChild<T>(this DependencyObject element, string name)
where T : FrameworkElement
{
//Code to find the control
}