Exemplo n.º 1
0
 public void RenameObject()
 {
     if (_exObject != null)
     {
         _exObject.RenameExplorerObject(this.Text);
     }
 }
Exemplo n.º 2
0
 private void btnOk_Click(object sender, EventArgs e)
 {
     if (_exObject != null && _oldName != txtName.Text)
     {
         if (!_exObject.RenameExplorerObject(txtName.Text))
         {
             MessageBox.Show("Can't rename object", "ERROR");
         }
     }
 }