Skip to content

Commit

Permalink
Update PerformanceSettingViewModel.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Sep 17, 2023
1 parent f7ddd10 commit 084d5eb
Showing 1 changed file with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
using CommunityToolkit.Mvvm.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using Wpf.Ui.Controls;
using SMC = Sucrose.Memory.Constant;
using SMMI = Sucrose.Manager.Manage.Internal;
using SMMM = Sucrose.Manager.Manage.Manager;
using SPVCEC = Sucrose.Portal.Views.Controls.ExpanderCard;
using SSRER = Sucrose.Shared.Resources.Extension.Resources;
using TextBlock = System.Windows.Controls.TextBlock;

namespace Sucrose.Portal.ViewModels.Pages
{
Expand All @@ -21,7 +29,15 @@ public PerformanceSettingViewModel()

private void InitializeViewModel()
{
//
TextBlock SystemResourcesArea = new()
{
Foreground = SSRER.GetResource<Brush>("TextFillColorPrimaryBrush"),
Margin = new Thickness(0, 0, 0, 0),
FontWeight = FontWeights.Bold,
Text = "Sistem Kaynakları"
};

Contents.Add(SystemResourcesArea);

_isInitialized = true;
}
Expand Down

0 comments on commit 084d5eb

Please sign in to comment.