我注意到任务对话框中有一个很大的垂直空间(命令链接标题和指令文本之间的空间),看起来确实很糟糕。在我将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版中遇到了相同的错误。这似乎是由于TaskDialogCommandLink
类的toString
方法string.Format
和Environment.NewLine
导致的,这种方法在传递给TaskDialog本身时并不能清晰地映射。
public override string ToString()
{
return string.Format(CultureInfo.CurrentCulture, "{0}{1}{2}",
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;
}
关于c# - 从v1.1开始,TaskDialog中命令链接中的垂直空间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17716544/