设置ScrollBar栏大小?

发布于 2024-11-15 06:30:46 字数 280 浏览 3 评论 0原文

我正在代码隐藏中创建一个滚动条,如下所示:

     ScrollBar b = new ScrollBar();
     Grid ScrollbarGrid = GetTemplateChild( "ScrollbarGrid" ) as Grid;
     b.Orientation = Orientation.Horizontal;
     ScrollbarGrid.Children.Add(b);

我需要的是滚动条手柄的大小是我自己设置的(如果可能的话)?

I'm creating a scrollbar in codebehind like so:

     ScrollBar b = new ScrollBar();
     Grid ScrollbarGrid = GetTemplateChild( "ScrollbarGrid" ) as Grid;
     b.Orientation = Orientation.Horizontal;
     ScrollbarGrid.Children.Add(b);

What I need is for the scrollbar handle to be of a size I set myself if that is at all possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡淡绿茶香 2024-11-22 06:30:46

您可以使用 ViewportSize

像 b.ViewportSize = 5;

看一下 此处了解更多信息。

和 MSDN 的跟踪类< /a> 拇指大小如何计算

You can use ViewportSize

like b.ViewportSize = 5;

take a look at here for more information.

and MSDN's Track Class how thumb size calculates

亽野灬性zι浪 2024-11-22 06:30:46

您可以设置滚动条的高度和宽度属性,这是您需要的吗?

You can set the Height and Width property of the scroll bar, is this what you need ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文