如何设置 TrimBar 的高度或宽度?

How do I set the height or width of TrimBar?

我有一个配置如下的 TrimBar

如何更改 TrimBar 的宽度或高度?

调整 TrimBar 以适应其内容。

您可以使用 CSS 在内容周围添加边距,例如:

.MTrimBar ToolBar
{
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 5px;
    margin-bottom: 5px;    
}