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.
这是某种直方图。我有两个 GraphPanes 的 MasterPane。MasterPane 布局是 SingleRow。如何在窗格之间设置没有间隙?
这就是我的意思
masterPane.Margin.All = 0f; masterPane.InnerPaneGap = 0f;
似乎不起作用
实际上,我需要YouRightGraphPane.Margin.Left= 0;. 之后只需左右移动图形
YouRightGraphPane.Margin.Left= 0;
您还必须这样做:
YouLeftGraphPane.Margin.Right = 0; YouRightGraphPane.Margin.Left= 0;
这对我有用)