0

我想给用户重命名文件的特权。为此,当用户单击菜单项“重命名”时,弹出对话框和可编辑文本框应该显示“确定”和“取消”按钮?我该如何实施?如果有,请分享代码。

兄弟,基努

4

1 回答 1

1

您可以使用InputPrompt来自Coding4fun Tookit

该文档可在 Codeplex 上找到:http ://coding4fun.codeplex.com/wikipage?title=InputPrompt&referringTitle=Documentation

调用它很简单:

var input = new InputPrompt();
input.Completed += InputCompleted;
input.Title = "Rename file";
input.Message = "Enter a new name for the file:";
input.Show();

然后你只需要在回调中检索值:

private void InputCompleted(object sender, PopUpEventArgs<object, PopUpResult> e)
{
    MessageBox.Show(e.Result);
}
于 2012-11-02T09:07:51.880 回答