Example #1
0
        public void RaiseClick()
        {
            if (_recentItem.IsSaving)
            {
                return;
            }

            ServiceProvider.LaunchFile(new ProcessStartInfo(_recentItem.FileName));
        }
Example #2
0
        void Image_MouseUp(object Sender, MouseButtonEventArgs E)
        {
            ServiceProvider.LaunchFile(new ProcessStartInfo(_filePath));

            OnClose();
        }
Example #3
0
        void Image_MouseUp(object sender, MouseButtonEventArgs e)
        {
            ServiceProvider.LaunchFile(new ProcessStartInfo(_filePath));

            CloseButton_Click();
        }
 public void RaiseClick()
 {
     ServiceProvider.LaunchFile(new ProcessStartInfo(_fileName));
 }