示例#1
0
 private void UpdateInfo()
 {
     try
     {
         textDescription.Text = _rmHandle.GetDescription();
         textGuid.Text        = _rmHandle.GetGuid().ToString("B");
     }
     catch (Exception ex)
     {
         textDescription.Text = "(" + ex.Message + ")";
         textGuid.Text        = "(" + ex.Message + ")";
     }
 }