mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2024-12-22 15:42:45 +01:00
16 lines
406 B
C#
16 lines
406 B
C#
using System.Diagnostics;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace BackupEssentials.Pages.HomeSub{
|
|
public partial class DriveBackup : Page{
|
|
public DriveBackup(){
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void OpenMyComputer(object sender, RoutedEventArgs e){
|
|
Process.Start("::{20d04fe0-3aea-1069-a2d8-08002b30309d}");
|
|
}
|
|
}
|
|
}
|