Title in chromelessWindow

Hey,

I would like to change the title display in the ChromelessWindow without change the application name, how can i do that?

For exemple the application title is : APP1
But i want to display on top of the window : this is ok

Thanks

1 Reply 1 reply marked as answer

VR Vijayalakshmi Roopkumar Syncfusion Team June 9, 2021 10:46 AM UTC

Hi Jeremy 
 
Thank you for using Syncfusion products. 
 
We have checked your query and understood that you want to change the title of ChromelessWindow. But we are unable to understood what do you mean by without changing the application name. Since the title of ChromelessWindow will be differ than the application name. So you can able to change the title of ChromelessWindow using its Title property. However if you wish to change the title of ChromelessWindow other than using Title Property , you can use the LeftHeaderItemsSource property. By using it, you can place any content or image in the title of ChromelessWindow at left end of window. 
 
  
We have also attached the sample, in this we have shown the title of ChromelessWindow using LeftHeaderItemssource by placing textbox as shown in below code: 
 
Code:[XAML] 
 
 
<syncfusion:ChromelessWindow.LeftHeaderItemsSource> 
<listCollection:ArrayList> 
//Setting title 
<TextBlock 
Width="100" 
Height="23" 
Margin="500,5,0,0" 
Text="Application Title" 
TextAlignment="Center" /> 
</listCollection:ArrayList> 
</syncfusion:ChromelessWindow.LeftHeaderItemsSource> 
 
 
 
 
Screenshot: 
 
 
 
UG for more information: 
 
 
 
Kindly try this suggestion and let us know if it is helpful. 
 
Regards, 
Vijayalakshmi VR 


Marked as answer
Loader.
Up arrow icon