diff options
| author | Emmanuel Hansen <emmausssss@gmail.com> | 2023-09-18 20:09:22 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-18 22:09:22 +0200 |
| commit | 9f26fd36008d2cf4fe96b8dce7ec935b38b0b4c7 (patch) | |
| tree | a385ba684a7ab1927c293d028818d04d7295820f /src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml | |
| parent | 88df636c870528a24695a23ffeb3768399bcf0af (diff) | |
remove some usages of reflection binding (#5686)
Diffstat (limited to 'src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml')
| -rw-r--r-- | src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml b/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml index a70fc8d4..6186b7d9 100644 --- a/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml +++ b/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml @@ -6,9 +6,11 @@ xmlns:locale="clr-namespace:Ryujinx.Ava.Common.Locale" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="{locale:Locale ErrorWindowTitle}" + xmlns:views="using:Ryujinx.Ava.UI.Applet" Width="450" Height="340" CanResize="False" + x:DataType="views:ErrorAppletWindow" SizeToContent="Height" mc:Ignorable="d" Focusable="True"> @@ -38,7 +40,7 @@ Grid.Column="1" Margin="10" VerticalAlignment="Stretch" - Text="{ReflectionBinding Message}" + Text="{Binding Message}" TextWrapping="Wrap" /> <StackPanel Name="ButtonStack" @@ -49,4 +51,4 @@ Orientation="Horizontal" Spacing="10" /> </Grid> -</Window>
\ No newline at end of file +</Window> |
