• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

CommandLink在WPF

用户头像
it1352
帮助1

问题说明

谁能告诉我我怎么能在WPF窗口中添加CommandLink控制

Can someone tell me how can I add a CommandLink control in a WPF window?

这是我说的CommandLink:的 http://msdn.microsoft.com/en-us/library/aa511455.aspx

This is what I mean by CommandLink : http://msdn.microsoft.com/en-us/library/aa511455.aspx

正确答案

#1

WPF任务对话包装提供

WPF Task Dialog Wrapper provides an implementation of a CommandLink user control.

下面是如何显示命令链接的例子:

Here's an example of how to show command links:

TaskDialogOptions config = new TaskDialogOptions();

config.Owner = this;
config.Title = "RadioBox Title";
config.MainInstruction = "The main instruction text for the TaskDialog goes here.";
config.Content = "The content text for the task dialog is shown here "
                 "and the text will automatically wrap as needed.";
config.ExpandedInfo = "Any expanded content text for the task dialog "

                      "is shown here and the text will automatically wrap as needed.";
config.CommandButtons = new string[] {
    "Command &Link 1", "Command Link 2\nLine 2\nLine 3", "Command Link 3" };
config.MainIcon = VistaTaskDialogIcon.Information;

TaskDialogResult res = TaskDialog.Show(config);



学新通

该库的代码项目开放许可证。

The library is licensed under the The Code Project Open License.

七更新还有一个很好的实现的<一个HREF =https://github.com/sevenalive/SevenUpdate/blob/master/Externals/SevenSoftware.Windows/Controls/CommandLink.cs相对=nofollow> CommandLink 按钮

Seven Update has another nice implementation of a CommandLink Button.

这是它的样子:

学新通

请记住这是一个项目在GPL v3的许可证授权

Bear in mind that is a project licensed under the GPL v3 license.

本指南也会有所帮助:

<一个HREF =http://expression.microsoft.com/en-us/ee662150相对=nofollow>创建命令链接控制在Silverlight与Expression Blend的3和行为

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfiahb
系列文章
更多 icon
同类精品
更多 icon
继续加载