mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2024-12-22 15:42:45 +01:00
13 lines
328 B
C#
13 lines
328 B
C#
using BackupEssentials.Utils;
|
|
using System.Windows.Controls;
|
|
|
|
namespace BackupEssentials.Pages.HomeSub{
|
|
public partial class BackupGuide : Page{
|
|
public BackupGuide(){
|
|
InitializeComponent();
|
|
|
|
if (!WindowsVersion.IsFullySupported())TextBlockContextMenuWarning.Opacity = 1;
|
|
}
|
|
}
|
|
}
|