本文介绍了如何设置TrimBar的高度或宽度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个TrimBar,其配置如下

I have a TrimBar which configured as below

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

How can I change the TrimBar width or height ?

推荐答案

TrimBar进行调整以适应其内容.

The TrimBar adjust to accomodate its contents.

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

You can add margins around the contents using CSS like:

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

这篇关于如何设置TrimBar的高度或宽度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 22:53