[feat:] implemented a basic editor for the wiki
This commit is contained in:
@@ -1,8 +1,17 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
x:Class="Logof_Client.Wiki.EditorWindow"
|
||||
Title="Wiki Editor (disabled)" Width="400" Height="150">
|
||||
Title="Wiki Editor" MinWidth="600" MinHeight="350" WindowState="Maximized">
|
||||
<Grid>
|
||||
<TextBlock Margin="12" TextWrapping="Wrap">Coming soon.</TextBlock>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="50" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
<StackPanel Grid.Row="0" Orientation="Horizontal">
|
||||
<Button x:Name="BtnSave" Content="Speichern" Click="BtnSave_OnClick" />
|
||||
<Button x:Name="BtnSaveAs" Content="Speichern unter..." Click="BtnSaveAs_OnClick" />
|
||||
<Button x:Name="BtnDelete" Content="Löschen" Click="BtnDelete_OnClick" />
|
||||
</StackPanel>
|
||||
<TextBox Grid.Row="1" x:Name="TbContent" />
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user