我想更改ItemsPanelTemplate内部的StackPanel的方向.要更改Orientation,我已经实现了一个属性.是否有任何方法可以更改StackPanel的方向.我尝试了以下代码..但是没有成功.Setter Property=ItemsPanelSetter.Valu...
我想更改ItemsPanelTemplate内部的StackPanel的方向.要更改Orientation,我已经实现了一个属性.是否有任何方法可以更改StackPanel的方向.我尝试了以下代码..但是没有成功.
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<StackPanel Orientation="{Binding MyOrientation,RelativeSource={RelativeSource TemplatedParent}}" HorizontalAlignment="Left" />
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
解决方法:
使用{RelativeSource AncestorType = YourItemsControlType}
MyItemsControl.cs:
namespace MyNamespace.Controls
{
public partial class MyItemsControl : ItemsControl
{
public static readonly DependencyProperty MyOrientationProperty =
DependencyProperty.Register(
"MyOrientation",
typeof(Orientation),
typeof(MyItemsControl));
public Orientation MyOrientation
{
get { return (Orientation)GetValue(MyOrientationProperty); }
set { SetValue(MyOrientationProperty, value); }
}
}
}
MyItemsControls.xaml
<Style xmlns:source="clr-namespace:MyNamespace.Controls" TargetType="source:MyItemsControl">
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<StackPanel
Orientation="{Binding Orientation,
RelativeSource={
RelativeSource AncestorType=source:MyItemsControl
}
}"
HorizontalAlignment="Left" />
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
</Style>
参考:http://msdn.microsoft.com/en-us/library/ms743599%28v=vs.110%29.aspx
沃梦达教程
本文标题为:c#-在Windows Phone中从父项绑定到ItemsPanelTemplate中
基础教程推荐
猜你喜欢
- Unity实现答题系统的示例代码 2023-06-08
- C#使用命名管道Pipe进行进程通信实例详解 2023-03-28
- C# 在PDF文档中创建表格的实现方法 2022-12-02
- C#操作串口通信协议Modbus的常用方法介绍 2023-06-05
- Unity实现图形相交检测 2023-02-16
- .net core系列之《将.net core应用部署到Ubuntu》 2023-09-28
- C#调用百度翻译API实现一个翻译功能 2023-04-22
- 深入分析c# 继承 2023-03-09
- c# – Windows窗体设计器 – 在类前自动添加命名空间 2023-09-19
- 基于C# 写一个 Redis 数据同步小工具 2023-02-08