mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* 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> (cherry picked from commit 6b03aaaec78bd50c8f4730c9aa7d0f5cea76e782)
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>
|