Exemplo n.º 1
0
 public void ShowIt()
 {
     var setup = new RepositorySetup("pedro");
     {
         var c = new Chorus.UI.Misc.ReadinessPanel();
         c.ProjectFolderPath = setup.ProjectFolder.Path;
         var f = new Form();
         f.Width = c.Width + 20;
         f.Height = c.Height + 20;
         c.Dock = DockStyle.Fill;
         f.Controls.Add(c);
         Application.Run(f);
     }
 }
Exemplo n.º 2
0
 public void ShowIt()
 {
     var setup = new RepositorySetup("pedro");
     {
         var c = new Chorus.UI.Misc.ReadinessPanel();
         c.ProjectFolderPath = setup.ProjectFolder.Path;
         var f = new Form();
         f.Width  = c.Width + 20;
         f.Height = c.Height + 20;
         c.Dock   = DockStyle.Fill;
         f.Controls.Add(c);
         Application.Run(f);
     }
 }