如何以编程方式访问此WPF XAML资源?
<Grid.Resources>
<Style x:Key="lineDataPointStyle" TargetType="chartingToolkit:LineDataPoint">
<Setter Property="Background" Value="DarkGreen"/>
<Setter Property="IsTabStop" Value="False"/>
<Setter Property="Template" Value="{x:Null}"/>
</Style>
</Grid.Resources>
这是我要从中访问它的代码。注意我需要以编程方式创建行:
// New Assoicated Graph Series
var lineSeries = new LineSeries();
lineSeries.ItemsSource = newSeriesCollection;
lineSeries.IndependentValuePath = "Second";
lineSeries.DependentValuePath = "Kb";
lineSeries.Title = kvp.Key;
lineSeries.DataPointStyle = (Style) this.Resources["lineDataPointStyle"]; // ** DOES NOT WORK
答案 0 :(得分:21)
我不确定您在xaml中引用的Grid的路径;但是,鉴于这个xaml:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:src="clr-namespace:WpfApplication1"
Title="Test Application - ListView" Height="300" Width="300">
<Window.Resources>
<src:OrderStateConverter x:Key="orderStateConverter"/>
<DataTemplate x:Key="checkbox">
<CheckBox IsChecked="{Binding XPath=@State, Converter={StaticResource orderStateConverter}}"
Margin="0,1,1,1" >
</CheckBox>
</DataTemplate>
<DataTemplate x:Key="headerButton">
<Button/>
</DataTemplate>
</Window.Resources>
<StackPanel>
<ListView Height="Auto"
Name="listView1"
Width="Auto"
ItemsSource="{Binding Source={StaticResource myXmlDatabase},XPath=Item}">
<ListView.Resources>
<DataTemplate x:Key="checkbox2">
<CheckBox IsChecked="{Binding XPath=@State, Converter={StaticResource orderStateConverter}}"
Margin="0,1,1,1" >
</CheckBox>
</DataTemplate>
</ListView.Resources>
</ListView>
</StackPanel>
</Window>
以下代码将从Wndow和ListView:
中提取资源 public void SomeMethod() {
Object res1 = this.Resources["checkbox"];
Object res2 = this.listView1.Resources["checkbox2"];
return;
}
在这种情况下,该方法位于类
后面的窗口代码中答案 1 :(得分:5)
FrameworkElement 类具有公共对象FindResource(object resourceKey); 方法。使用此方法搜索资源。
原因
this.Resources["checkbox"]
不会为您提供资源 已定义资源字典和应用程序资源的层次结构 但是this.FindResource("checkbox");
也会在那里工作。