mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-19 14:56:34 +03:00
change some labels & add version information in About
This commit is contained in:
@@ -28,16 +28,23 @@ public class AboutWindow : Window
|
|||||||
|
|
||||||
var AboutText = new TextBlock
|
var AboutText = new TextBlock
|
||||||
{
|
{
|
||||||
Text = "KeyKeeper is a personal password and key manager\n" +
|
Text = "KeyKeeper is a personal local password manager\n" +
|
||||||
"where you can save passwords and other login\n" +
|
"and a TOTP (Time-based One-Time Password) generator.\n",
|
||||||
"information, configure one-time code generation,\n" +
|
|
||||||
"and create encryption keys for personal use.\n",
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Left,
|
HorizontalAlignment = HorizontalAlignment.Left,
|
||||||
FontSize = 16,
|
FontSize = 16,
|
||||||
TextAlignment = TextAlignment.Left,
|
TextAlignment = TextAlignment.Left,
|
||||||
Margin = new Thickness(0, 20, 0, 0)
|
Margin = new Thickness(0, 20, 0, 0)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var AboutSmallText = new TextBlock
|
||||||
|
{
|
||||||
|
Text = "Authors: The KeyKeeper Team\nVersion: 2.0 (08.05.2026)",
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Left,
|
||||||
|
FontSize = 12,
|
||||||
|
TextAlignment = TextAlignment.Left,
|
||||||
|
Margin = new Thickness(0, 30, 0, 0)
|
||||||
|
};
|
||||||
|
|
||||||
var mainGrid = new Grid
|
var mainGrid = new Grid
|
||||||
{
|
{
|
||||||
VerticalAlignment = VerticalAlignment.Center,
|
VerticalAlignment = VerticalAlignment.Center,
|
||||||
@@ -46,11 +53,12 @@ public class AboutWindow : Window
|
|||||||
|
|
||||||
var innerStack = new StackPanel
|
var innerStack = new StackPanel
|
||||||
{
|
{
|
||||||
Width = 400
|
Width = 550
|
||||||
};
|
};
|
||||||
|
|
||||||
innerStack.Children.Add(AboutKeyKeeper);
|
innerStack.Children.Add(AboutKeyKeeper);
|
||||||
innerStack.Children.Add(AboutText);
|
innerStack.Children.Add(AboutText);
|
||||||
|
innerStack.Children.Add(AboutSmallText);
|
||||||
|
|
||||||
mainGrid.Children.Add(innerStack);
|
mainGrid.Children.Add(innerStack);
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
xmlns:ps="using:KeyKeeper.PasswordStore"
|
xmlns:ps="using:KeyKeeper.PasswordStore"
|
||||||
x:Class="KeyKeeper.Views.EntryEditWindow"
|
x:Class="KeyKeeper.Views.EntryEditWindow"
|
||||||
x:DataType="vm:EntryEditViewModel"
|
x:DataType="vm:EntryEditViewModel"
|
||||||
Title="Add Entry"
|
Title="Add Password"
|
||||||
CanResize="True"
|
CanResize="True"
|
||||||
MinWidth="540"
|
MinWidth="540"
|
||||||
MinHeight="400"
|
MinHeight="400"
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
</TreeView>
|
</TreeView>
|
||||||
|
|
||||||
<!-- Save Passwords -->
|
<!-- Save Passwords -->
|
||||||
<Button Content="Save Passwords"
|
<Button Content="Save"
|
||||||
Classes="accentSidebarButton"
|
Classes="accentSidebarButton"
|
||||||
Click="SaveButton_Click"
|
Click="SaveButton_Click"
|
||||||
Height="30"
|
Height="30"
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
Margin="0,20,0,0"/>
|
Margin="0,20,0,0"/>
|
||||||
|
|
||||||
<!-- New Entry -->
|
<!-- New Entry -->
|
||||||
<Button Content="New Entry"
|
<Button Content="New Password"
|
||||||
Classes="accentSidebarButton"
|
Classes="accentSidebarButton"
|
||||||
Click="AddEntryButton_Click"
|
Click="AddEntryButton_Click"
|
||||||
Height="30"
|
Height="30"
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
Margin="0,20,0,0"/>
|
Margin="0,20,0,0"/>
|
||||||
|
|
||||||
<!-- Edit Selected Entry -->
|
<!-- Edit Selected Entry -->
|
||||||
<Button Content="Edit Selected Entry"
|
<Button Content="Edit Selected Password"
|
||||||
Classes="accentSidebarButton"
|
Classes="accentSidebarButton"
|
||||||
Click="EditEntryButton_Click"
|
Click="EditEntryButton_Click"
|
||||||
Height="30"
|
Height="30"
|
||||||
|
|||||||
Reference in New Issue
Block a user