Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Infragistics XamDataGrid 来显示我的数据,但最终用户认为拆分器太宽,这让他们感到不舒服。
想知道如何更改该拆分器的样式以使其宽度更小。
谢谢!
我刚刚使用以下样式进行了测试:
<Style TargetType="{x:Type igDP:FixedFieldSplitter}"> <Setter Property="Width" Value="2"/> <Setter Property="MinWidth" Value="2"/> </Style>
MinWidth 属性默认设置为 7,因此如果您想要更薄的拆分器,则需要更改 Width 和 MinWidth 以进行补偿,否则您的 Width 将不允许低于 7。