17 lines
567 B
XML
17 lines
567 B
XML
<fluent:ContentDialog
|
|
x:Class="Builder.AddPageView"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:fluent="using:FluentAvalonia.UI.Controls"
|
|
xmlns:ui="clr-namespace:TheXamlGuy.UI.Avalonia;assembly=TheXamlGuy.UI.Avalonia"
|
|
Title="Add Page"
|
|
CloseButtonText="Cancel"
|
|
DefaultButton="Primary"
|
|
PrimaryButtonClick="{ui:Invoke Add}"
|
|
PrimaryButtonText="Add">
|
|
<TextBox
|
|
Width="500"
|
|
Text="{Binding Name}"
|
|
Watermark="Enter page name" />
|
|
</fluent:ContentDialog>
|