Files
TheXamlGuy/App/WeddingBuilder/Views/AddPageView.axaml
T

15 lines
414 B
XML

<ContentDialog
x:Class="Builder.AddPageView"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Add Page"
CloseButtonText="Cancel"
DefaultButton="Primary"
PrimaryButtonClick="{Invoke Add}"
PrimaryButtonText="Add">
<TextBox
Width="500"
Text="{Binding Name}"
Watermark="Enter page name" />
</ContentDialog>