* add Placeholder and make default buttons flags consistent w old behaviour * DialogWindow ops * make QuickDialog use DialogWindow * Update Content.Client/UserInterface/Controls/DialogWindow.xaml --------- Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
10 lines
564 B
XML
10 lines
564 B
XML
<controls:FancyWindow xmlns="https://spacestation14.io" xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls">
|
|
<BoxContainer Orientation="Vertical" Margin="8">
|
|
<BoxContainer Name="Prompts" Orientation="Vertical"/> <!-- Populated in constructor -->
|
|
<BoxContainer Orientation="Horizontal" HorizontalAlignment="Center">
|
|
<Button Name="OkButton" Text="{Loc 'quick-dialog-ui-ok'}"/>
|
|
<Button Name="CancelButton" Text="{Loc 'quick-dialog-ui-cancel'}"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|