示例#1
0
 public ProfilerUploader()
 {
     InitializeComponent();
     this.Closed += ProfilerUploader_Closed;
     Singletone   = this;
     UpdateInterface();
 }
 public ProfilerUploader()
 {
     InitializeComponent();
     this.Closed += ProfilerUploader_Closed;
     Singletone = this;
     UpdateInterface();
 }
示例#3
0
 public static void Start()
 {
     if (Navigator.Manager.NotDefined(MethodInfo.GetCurrentMethod()))
     {
         SpecialOmniboxProvider.Register(new SpecialOmniboxAction("ClientProfiler",
                                                                  () => true,
                                                                  win =>
         {
             ProfilerUploader.OpenProfilerUploader();
         }));
     }
 }
示例#4
0
 void ProfilerUploader_Closed(object sender, EventArgs e)
 {
     Singletone = null;
 }
 void ProfilerUploader_Closed(object sender, EventArgs e)
 {
     Singletone = null;
 }