这是某种直方图。
我的MasterPane带有两个GraphPanes。
MasterPane布局为SingleRow。
如何在窗格之间没有间隙?
Here's what I mean
masterPane.Margin.All = 0f;
masterPane.InnerPaneGap = 0f;
似乎不起作用
最佳答案
您还必须执行以下操作:
YouLeftGraphPane.Margin.Right = 0;
YouRightGraphPane.Margin.Left= 0;
这项工作对我来说)
关于c# - 如何更改 Pane 上图形之间的距离?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18912521/