我想为用户提供重命名文件的权限。为此,当用户点击菜单项'rename'a弹出对话框时,可编辑的文本框应显示'ok'和'cancel'按钮?我该如何实现它?如果有的话,请分享代码。
BR, 急怒
答案 0 :(得分:1)
您可以使用Coding4fun Tookit
中的InputPrompt
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);
}