自 v1.1 起 TaskDialog 中的命令链接中的垂直空间

Posted

技术标签:

【中文标题】自 v1.1 起 TaskDialog 中的命令链接中的垂直空间【英文标题】:Vertical space in command links in TaskDialog since v1.1 【发布时间】:2013-07-18 06:54:16 【问题描述】:

我注意到我的任务对话框中有一个很大的垂直空间(命令链接的标题和说明文本之间的空间),看起来非常糟糕。它在我将 WindowsAPICodePack 升级到 1.1 版后立即开始出现。

代码如下:

TaskDialog td = new TaskDialog();
var b1 = new TaskDialogCommandLink("b1", "foo", "bar");
var b2 = new TaskDialogCommandLink("b2", "one", "two");
td.Controls.Add(b1);
td.Controls.Add(b2);
td.Caption = "Caption";
td.InstructionText = "InstructionText";
td.Text = "Text";
td.Show();

结果如下:

以前,“bar”会出现在“foo”的正下方,但现在看起来两者之间好像有一个空行。这是我的问题吗(有人知道可能是什么问题)还是你们也遇到了这个问题?

【问题讨论】:

【参考方案1】:

我在 1.1 版本中遇到了同样的错误。这似乎是由于TaskDialogCommandLink 类的toString 方法string.FormatEnvironment.NewLine,在传递给TaskDialog 本身时映射不干净。

public override string ToString()

  return string.Format(CultureInfo.CurrentCulture, "012",
    Text ?? string.Empty,
    (!string.IsNullOrEmpty(Text) && !string.IsNullOrEmpty(instruction)) ?
        Environment.NewLine : string.Empty,
    instruction ?? string.Empty);

我还是使用了一个实现子类来简化参数,并重写了传递包含简单'\n'的字符串的方法,尽管我不需要国际化我的应用程序,因此可以做一些事情更简单。

public override string ToString()

    string str;

    bool noLabel = string.IsNullOrEmpty(this.Text);
    bool noInstruction = string.IsNullOrEmpty(this.Instruction);

    if (noLabel & noInstruction)
    
        str = string.Empty;
    
    else if (!noLabel & noInstruction)
    
        str = this.Text;
    
    else if (noLabel & !noInstruction)
    
        str = base.Instruction;
    
    else
    
        str = this.Text + "\n" + this.Instruction;
    
    return str;

【讨论】:

【参考方案2】:

我注意到与 Windows 8 上的 API Code Pack v1.1 相同的间距问题。DougM 是正确的,他的 ToString() 覆盖将解决问题。

这是一个更新版本,只需将这个类放到您的项目中,而不是使用TaskDialogCommandLink,而是使用TaskDialogCommandLinkEx

using Microsoft.WindowsAPICodePack.Dialogs;

internal class TaskDialogCommandLinkEx : TaskDialogCommandLink

    public override string ToString()
    
        string str;

        var noLabel = string.IsNullOrEmpty(Text);
        var noInstruction = string.IsNullOrEmpty(Instruction);

        if (noLabel & noInstruction)
        
            str = string.Empty;
        
        else if (!noLabel & noInstruction)
        
            str = Text;
        
        else if (noLabel & !noInstruction)
        
            str = Instruction;
        
        else
        
            str = Text + "\n" + Instruction;
        
        return str;
    

【讨论】:

以上是关于自 v1.1 起 TaskDialog 中的命令链接中的垂直空间的主要内容,如果未能解决你的问题,请参考以下文章

TaskDialog 在我的 Delphi 程序中不起作用

TaskDialog 引发异常:需要版本 6 中的 comctl32.dll

Revit二次开发 任务对话框TaskDialog

在 C# 中使用 TaskDialog 时出现 EntryPointNotFoundException

TaskDialog 更改按钮语言

TaskDialog 在 Visual C++ 中始终位于顶部