@@ -24,6 +24,7 @@ public partial class MainWindow : Window
24
24
{
25
25
private PlatformID platform ;
26
26
private bool isCloseConfirm ;
27
+ private TextBlock TitleLabel ;
27
28
private Button maximizeButton ;
28
29
private ButtonContent maximizeIconContent = new ( ) { Item = new IconItem ( ) { Icon = Assets . WindowRestore } , ColorSet = new ( ) { Color = Style . TEXT_LIGHT . Opacity ( 0.6 ) } } ;
29
30
@@ -43,6 +44,9 @@ public MainWindow()
43
44
Background = Style . BACK . ToBrush ( ) ;
44
45
Content . Margin = new ( 1 , 0 ) ;
45
46
47
+ TitleLabel = new ( ) { Text = "" , FontSize = 12 , VerticalAlignment = Avalonia . Layout . VerticalAlignment . Center , Foreground = Style . TEXT_LIGHT . ToBrush ( ) } ;
48
+ TitleLabel . Bind ( TextBlock . TextProperty , new Avalonia . Data . Binding { Path = "Title" , Source = this } ) ;
49
+
46
50
var binimizeButton = new Button ( ) { Width = 48 , Height = 40 }
47
51
. AddContent ( new ( ) { Item = new BorderItem ( ) { CornerRadius = 0 } , ColorSet = new ( ) { HoveredColor = Colors . White . Opacity ( 0.2 ) , PressedColor = Colors . White . Opacity ( 0.2 ) } } )
48
52
. AddContent ( new ( ) { Item = new IconItem ( ) { Icon = Assets . WindowMin } , ColorSet = new ( ) { Color = Style . TEXT_LIGHT . Opacity ( 0.7 ) } } ) ;
@@ -58,14 +62,16 @@ public MainWindow()
58
62
. AddContent ( new ( ) { Item = new IconItem ( ) { Icon = Assets . WindowClose } , ColorSet = new ( ) { Color = Style . TEXT_LIGHT . Opacity ( 0.7 ) } } ) ;
59
63
closeButton . Clicked += ( ) => Close ( ) ;
60
64
61
- WindowControl . Children . Add ( binimizeButton ) ;
62
- WindowControl . Children . Add ( maximizeButton ) ;
63
- WindowControl . Children . Add ( closeButton ) ;
64
-
65
+ bool UseSystemTitle = System . Runtime . InteropServices . RuntimeInformation . IsOSPlatform ( System . Runtime . InteropServices . OSPlatform . Linux ) ; //Is Only Linux have double title case X11?
66
+ if ( ! UseSystemTitle ) {
67
+ WindowControl . Children . Add ( binimizeButton ) ;
68
+ WindowControl . Children . Add ( maximizeButton ) ;
69
+ WindowControl . Children . Add ( closeButton ) ;
70
+ TitleBar . Children . Add ( TitleLabel ) ;
71
+ }
72
+
65
73
this . AttachWindowStateHandler ( ) ;
66
74
67
- TitleLabel . Foreground = Style . TEXT_LIGHT . ToBrush ( ) ;
68
-
69
75
mEditor = new Editor ( ) ;
70
76
mEditor . Document . ProjectNameChanged . Subscribe ( UpdateTitle ) ;
71
77
mEditor . Document . StatusChanged += UpdateTitle ;
0 commit comments