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