コード例 #1
0
ファイル: Status.cs プロジェクト: patricker/Pulse
 static StandardStatusMessages()
 {
     Normal = new Status(Properties.Resources.Icon, "Pulse", "");
     Downloading = new Status(Properties.Resources.icon_downloading, "Pulse - Downloading", "");
     NotConfigured = new Status(Properties.Resources.Icon, "Pulse - Configuration Required",
                         @"Pulse has not been configured yet.  Click here to configure Pulse. You may also right click the Pulse icon and choose Options.");
 }
コード例 #2
0
ファイル: PulseRunner.cs プロジェクト: patricker/Pulse
 public void SetNewStatus(Status status)
 {
     if (StatusChanged != null)
         StatusChanged(status);
 }