mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
16 lines
No EOL
857 B
XML
16 lines
No EOL
857 B
XML
<UserControl 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:vm="clr-namespace:CRD.ViewModels"
|
|
x:DataType="vm:ContentDialogInputLoginViewModel"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="CRD.Views.Utils.ContentDialogInputLoginView">
|
|
|
|
<StackPanel Spacing="10" MinWidth="400">
|
|
<!-- <TextBlock>E-Mail</TextBlock> -->
|
|
<TextBox Watermark="E-Mail" Text="{Binding Email}"></TextBox>
|
|
<!-- <TextBlock>Password</TextBlock> -->
|
|
<TextBox Watermark="Password" Text="{Binding Password}"></TextBox>
|
|
</StackPanel>
|
|
</UserControl> |