diff options
author | Emma@Rory& <root@rory.gay> | 2023-07-24 20:57:23 +0200 |
---|---|---|
committer | Emma@Rory& <root@rory.gay> | 2023-07-24 20:57:23 +0200 |
commit | cf6f87bea88df3f90e33dfdc5bb16f47b8716054 (patch) | |
tree | 92605891ae683d91f1d71a725d1c94f6675be43b /MatrixRoomUtils.Desktop/LoginWindow.axaml | |
parent | Debug validation api (diff) | |
download | MatrixUtils-cf6f87bea88df3f90e33dfdc5bb16f47b8716054.tar.xz |
Start of MRU Desktop
Diffstat (limited to 'MatrixRoomUtils.Desktop/LoginWindow.axaml')
-rw-r--r-- | MatrixRoomUtils.Desktop/LoginWindow.axaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Desktop/LoginWindow.axaml b/MatrixRoomUtils.Desktop/LoginWindow.axaml new file mode 100644 index 0000000..d61bfd3 --- /dev/null +++ b/MatrixRoomUtils.Desktop/LoginWindow.axaml @@ -0,0 +1,15 @@ +<Window xmlns="https://github.com/avaloniaui" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:desktop="clr-namespace:MatrixRoomUtils.Desktop" + mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" + x:Class="MatrixRoomUtils.Desktop.LoginWindow" + Title="LoginWindow" + x:DataType="desktop:LoginWindow"> + <StackPanel> + <TextBox Text="{Binding Username, Mode=TwoWay}" /> + <MaskedTextBox Text="{Binding Password, Mode=TwoWay}" /> + <Button Click="Login">Login</Button> + </StackPanel> +</Window> |