Mass rename project for rebranding
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user