private void specificToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ResetCheck();

            if (mdp != null)
            {
                Object spec = DAGExplorer.SpecializeObject(mdp);

                if (spec != null)
                {
                    specificToolStripMenuItem.Checked = true;
                    Text = "Properties of MFn object " + mdp.partialPathName;
                    PropGrid.SelectedObject = spec;
                }
                else
                {
                    MessageBox.Show("This object is not currently supported", "DAG Explorer", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
        }
 public override void doIt(MArgList argl)
 {
     wnd = new DAGExplorer ();
     //MayaTheme.SetMayaIcon (wnd);
     wnd.Show ();
 }
Exemple #3
0
 public override void doIt(MArgList argl)
 {
     wnd = new DAGExplorer();
     //MayaTheme.SetMayaIcon (wnd);
     wnd.Show();
 }