如何获得像 GoogleChrome 浏览器搜索一样的 WPF 搜索框样式?
我计划在 WPF 中提供搜索功能,就像在 Google Chrome 浏览器中一样。示例如下所示
我已准备好后端代码,但我想要一个像如下所示 - 我也可以在其中显示结果(例如 0 of 0)。
另外,我想要下一个和上一个的箭头标记。
如何在 XAML 中的 WPF 中设计这样的 TextBox?请指导我同样的事情。
I am planning to have search functionality in WPF like it happens in Google Chrome browser. The sample is shown below
I have the backend code ready, but I want to have a TextBox like the one shown below - in which I can display the results also(like 0 of 0).
Also I would like to have the arrow marks for next and prev.
How do I design such a TextBox in WPF in XAML? Please guide me regarding the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以使用以下代码创建自定义控件:
Generic.xaml 中的样式
您需要根据需要更改它。但这应该是一个很好的起点。
A custom control can be created using following code:
Style in Generic.xaml
You will need to change it according to your needs. But this should be a good starting point.
没有现成的解决方案可以满足您的要求。您必须对现有控件的控件模板进行大量修改,或者您可以从头开始构建自定义控件。
http://msdn.microsoft.com/en-us /library/aa970773%28VS.85%29.aspx
There is no Ready made solution for your requirement.You have to fiddle quite a few with the controltemplates of existing controls or you can build a custom control from scratch.
http://msdn.microsoft.com/en-us/library/aa970773%28VS.85%29.aspx