XteaKeysEditor.axaml 714 B

123456789101112131415161718
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="Neptune.View.Controls.Editors.XteaKeysEditor"
  4. Background="HotPink">
  5. <StackPanel VerticalAlignment="Center">
  6. <TextBlock HorizontalAlignment="Center"
  7. FontSize="16"
  8. Text="I'll be an XTEA key editor soon!" />
  9. <TextBlock HorizontalAlignment="Center"
  10. FontSize="16"
  11. Text="{Binding Test}" />
  12. <TextBlock HorizontalAlignment="Center"
  13. FontSize="16"
  14. Text="{Binding ConfigMember.FriendlyName}" />
  15. </StackPanel>
  16. </UserControl>