WPF 列表框模板/样式(ScrollBar 和 InnerShadow)
嘿。
你能帮我创建以下控件样式/模板吗?
我需要什么:
- 像这样的(垂直和水平)ScollBar 样式。 (没有两个箭头按钮)
- “ScrollViewer 区域”顶部和底部的内部阴影。
这就是我所需要的,我可以创建控件的其余部分。 (所选商品的颜色等)
谢谢。
Hy.
Could you help me create the fallowing control style/template?
What do I need:
- A (Vertical and Horizontal) ScollBar Style like that. (Without the two arrow button)
- Inner shadow on the top and bottom of the "ScrollViewer area".
That's all I need, I can create the rest parts of the control. (Selected Item's color etc)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WPF中的滚动条控件可以被认为是两个重复按钮和轨道部分的集合。您可以更改滚动条的模板并删除重复按钮。
对于阴影部分,您需要提供Zorder索引。请参阅以下链接 - stackpanel 控件上的 WPF 阴影
The scrollbar control in WPF can be thought of as collection of the two repeatbuttons and the track part. You can change the template of the scrollbar and remove the repeatbutton.
For the shadow part, you need to provide the the Zorder index. Refer to the following link - WPF shadow on stackpanel controls
我知道现在回答已经太晚了,但是如果您了解基本模板,则很容易获得 Style。 在这里您会找到一个模拟滚动条的滚动条你想要的,希望你喜欢。
I know is too late for an answer but Style is very easy to get if you understand basic templating. Here you will find a Scrollbar that emulate the one you want, hope you like it.