mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-07-23 08:59:03 +02:00
13 lines
306 B
C#
13 lines
306 B
C#
using BackupEssentials.Utils;
|
|
using System.Windows.Controls;
|
|
|
|
namespace BackupEssentials.Pages{
|
|
public partial class Home : Page{
|
|
public Home(){
|
|
InitializeComponent();
|
|
|
|
if (!WindowsVersion.IsFullySupported())TextBlockContextMenuWarning.Opacity = 1;
|
|
}
|
|
}
|
|
}
|