mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-08-09 17:41:13 +10:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d8fd0aa516 | ||
|
|
7f3c8b1777 | ||
|
|
087457fa0d |
@@ -440,7 +440,13 @@ namespace WPinternals
|
||||
{
|
||||
get
|
||||
{
|
||||
return _OpenWebSiteCommand ??= new DelegateCommand(() => Process.Start("www.wpinternals.net"));
|
||||
return _OpenWebSiteCommand ??= new DelegateCommand(() =>
|
||||
{
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = "www.wpinternals.net";
|
||||
process.Start();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -449,7 +455,13 @@ namespace WPinternals
|
||||
{
|
||||
get
|
||||
{
|
||||
return _DonateCommand ??= new DelegateCommand(() => Process.Start("https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VY8N7BCBT9CS4"));
|
||||
return _DonateCommand ??= new DelegateCommand(() =>
|
||||
{
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VY8N7BCBT9CS4";
|
||||
process.Start();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+4
-1
@@ -39,7 +39,10 @@ namespace WPinternals
|
||||
{
|
||||
if (args.Source is Hyperlink link)
|
||||
{
|
||||
Process.Start(link.NavigateUri.ToString());
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Documents;
|
||||
@@ -54,7 +55,10 @@ namespace WPinternals
|
||||
}
|
||||
else
|
||||
{
|
||||
System.Diagnostics.Process.Start(link.NavigateUri.ToString());
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Documents;
|
||||
@@ -48,7 +49,10 @@ namespace WPinternals
|
||||
}
|
||||
else
|
||||
{
|
||||
System.Diagnostics.Process.Start(link.NavigateUri.ToString());
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -63,7 +63,10 @@ namespace WPinternals
|
||||
(this.DataContext as GettingStartedViewModel)?.SwitchToDownload();
|
||||
break;
|
||||
default:
|
||||
Process.Start(link.NavigateUri.AbsoluteUri);
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,7 +53,10 @@ namespace WPinternals
|
||||
}
|
||||
else
|
||||
{
|
||||
Process.Start(link.NavigateUri.AbsoluteUri);
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,7 +57,10 @@ namespace WPinternals
|
||||
}
|
||||
else
|
||||
{
|
||||
Process.Start(link.NavigateUri.ToString());
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.29123.89
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.0.31606.5
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPinternals", "WPinternals.csproj", "{AED6DEB8-F54C-4B41-9655-793E7096AE6E}"
|
||||
EndProject
|
||||
@@ -335,8 +335,8 @@ Global
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-ShowPhoneInfo|x86.Build.0 = Debug|x86
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|Any CPU.ActiveCfg = Debug-Test|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|Any CPU.Build.0 = Debug-Test|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|x64.ActiveCfg = Debug-Test|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|x64.Build.0 = Debug-Test|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|x64.ActiveCfg = Debug|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|x64.Build.0 = Debug|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|x86.ActiveCfg = Debug-Test|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-Test|x86.Build.0 = Debug-Test|Any CPU
|
||||
{AED6DEB8-F54C-4B41-9655-793E7096AE6E}.Debug-TestProgrammer-550|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
|
||||
Reference in New Issue
Block a user