mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-08 09:26:30 +03:00
Update SettingsWindow.cs
This commit is contained in:
@@ -1,12 +1,22 @@
|
|||||||
using System;
|
using Avalonia.Controls;
|
||||||
using System.Collections.Generic;
|
using Avalonia.Controls.Shapes;
|
||||||
using System.Linq;
|
using Avalonia.Media;
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
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