20 lines
505 B
C#
20 lines
505 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using FluentAvalonia.UI.Windowing;
|
|
|
|
namespace Wallet.Avalonia;
|
|
|
|
public partial class WalletView : UserControl
|
|
{
|
|
public WalletView() => InitializeComponent();
|
|
|
|
protected override void OnLoaded(RoutedEventArgs args)
|
|
{
|
|
base.OnLoaded(args);
|
|
|
|
if (VisualRoot is AppWindow appWindow)
|
|
{
|
|
Container.ColumnDefinitions[3].Width = new GridLength(appWindow.TitleBar.RightInset, GridUnitType.Pixel);
|
|
}
|
|
}
|
|
} |