你好
我在继承System.Windows.Controls.Primitives.Selector 类之后发现
selector 里的item 是无法由设置margin来实现绝对定位的(即 item的margin定位相对对象并非其parent)
如果我希望每一个item都单独绝对定位 我该什么做 谢谢
例如下面的code我希望b1 b2能重叠 该怎么弄?
<ListBox>
<Button Content="Button" Height="24" Name="b1" Width="76" Margin="0,0,0,0" />
<Button Content="Button" Height="24" Name="b2" Width="76" Margin="0,0,0,0" />
</ListBox>