mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-04-28 10:56:30 +03:00
Update SettingsWindow.cs
This commit is contained in:
@@ -1,12 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Controls.Shapes;
|
||||
using Avalonia.Media;
|
||||
|
||||
namespace KeyKeeper
|
||||
namespace KeyKeeper.Views;
|
||||
public class SettingsWindow : Window
|
||||
{
|
||||
internal class SettingsWindow
|
||||
public SettingsWindow()
|
||||
{
|
||||
this.Title = "Настройки";
|
||||
this.Width = 400;
|
||||
this.Height = 300;
|
||||
var textBlock = new TextBlock
|
||||
{
|
||||
Text = "Окно настроек",
|
||||
HorizontalAlignment = Avalonia.Layout.HorizontalAlignment.Center,
|
||||
VerticalAlignment = Avalonia.Layout.VerticalAlignment.Center,
|
||||
FontSize = 16
|
||||
};
|
||||
this.Content = textBlock;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user