You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
433 B
20 lines
433 B
using Avalonia; |
|
using FluentAvalonia.UI.Windowing; |
|
using StabilityMatrix.Avalonia.Controls; |
|
|
|
namespace StabilityMatrix.Avalonia.Views; |
|
|
|
public partial class MainWindow : AppWindowBase |
|
{ |
|
public MainWindow() |
|
{ |
|
InitializeComponent(); |
|
|
|
#if DEBUG |
|
this.AttachDevTools(); |
|
#endif |
|
|
|
TitleBar.ExtendsContentIntoTitleBar = true; |
|
TitleBar.TitleBarHitTestType = TitleBarHitTestType.Complex; |
|
} |
|
}
|
|
|