我正在创建几个我想添加到ObjectDataProvider的静态资源,但我无法弄清楚语法。
<Window.Resources>
<SolidColorBrush x:Key="SolidFillBrush" Color="Black" Opacity="1.0" />
<SolidColorBrush x:Key="HalfOpaqueBrush" Color="Black" Opacity="0.5" />
<SolidColorBrush x:Key="QuarterOpaqueBrush" Color="Black" Opacity="0.25" />
<SolidColorBrush x:Key="TransparentBrush" Color="Black" Opacity="0" />
<ObjectDataProvider x:Key="AllFillStyles" ObjectType="{x:Type Brush}" MethodName="???">
<!-- add the static resources here, but how? -->
</ObjectDataProvider>
</Window.Resources>
有什么建议吗?
编辑:我正在尝试创建一个包含上述画笔的ComboBox,因此用户可以选择使用哪个画笔作为网格的填充样式(有点像在Excel中,您可以选择填充样式和颜色。我需要设置ItemsSource,并找到有人使用ObjectDataProvider的地方。我发现你可以在xaml中创建一个数组并用刷子填充它,然后用它来代替。
答案 0 :(得分:0)
关于如何使用ObjectDataProvider
的示例。 MethodName
是获取项目时尝试调用的方法的名称
<ObjectDataProvider x:Key="objDs"
ObjectType="{x:Type data:CDataAccess}"
MethodName="GetEmployees">
</ObjectDataProvider>
您的类文件
public class CDataAccess
{
ObservableCollection<ImageEmployee> _EmpCollection;
public ObservableCollection<ImageEmployee> EmpCollection
{
get { return _EmpCollection; }
set { _EmpCollection = value; }
}
public CDataAccess()
{
_EmpCollection = new ObservableCollection<ImageEmployee>();
}
public ObservableCollection<ImageEmployee> GetEmployees()
{
SqlConnection conn =
new SqlConnection("Data Source=.;Initial Catalog=Company;" +
"Integrated Security=SSPI");
SqlCommand cmd = new SqlCommand();
conn.Open();
cmd.Connection = conn;
cmd.CommandText = "Select * from ImageEmployee";
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
EmpCollection.Add(
new ImageEmployee()
{
EmpNo = Convert.ToInt32(reader["EmpNo"]),
EmpName = reader["EmpName"].ToString(),
Salary = Convert.ToInt32(reader["Salary"]),
DeptNo = Convert.ToInt32(reader["DeptNo"]),
EmpImage = (byte[])reader["EmpImage"]
});
}
reader.Close();
conn.Close();
return EmpCollection;
}
}
如果您的MethodName
有参数,则可以将其添加到资源对象提供程序
<ObjectDataProvider.MethodParameters>
<s:String>Parameter1</s:String>
</ObjectDataProvider.MethodParameters>
并确保您的参数类型与之匹配。
答案 1 :(得分:0)
我不知道ObjectDataProvider的真正目标是什么。
如果你想在对象AllFillStyle上调用一些方法,用不同的参数来识别资源键(SolidColorBrush对象)。
例如:
这不容易因为need pass paramater dynamically to ObjectDataProvider。
如果您只需要组所有资源类型的SolidColorBrush并在XAML中使用。
您可以在代码中填充SolidColorBrush的所有资源类型。
private ObservableCollection<SolidColorBrush> _windowBrushes;
public ObservableCollection<SolidColorBrush> WindowBrushes
{
get
{
return _windowBrushes;
}
set
{
_windowBrushes = value;
OnPropertyChanged("WindowBrushes");
}
}
private void MainWindow_OnLoaded(object sender, RoutedEventArgs e)
{
WindowBrushes = new ObservableCollection<SolidColorBrush>();
foreach (var resource in this.Resources.Values)
{
SolidColorBrush brush = resource as SolidColorBrush;
if (brush!=null)
{
WindowBrushes.Add(brush);
}
}
}
然后在XAML中使用。
<ListBox x:Name="ListBoxBrushes"
Grid.Row="0"
Margin="5"
ItemsSource="{Binding Path=WindowBrushes, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<Ellipse Width="30"
Height="30"
Stroke="Black"
StrokeThickness="1"
Fill="{Binding}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Rectangle Grid.Row="1"
Margin="5"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Fill="{Binding ElementName=ListBoxBrushes, Path=SelectedItem}"/>
您可以使用ObjectDataProvider指定您的方案吗?
感谢