Hi @Arvind kumar ,
I want to hide only title showing in the first launch of the application.
This can be done by setting ApplicationViewTitleBar.ButtonBackground to transparent.
public MainPage()
{
this.InitializeComponent();
ApplicationViewTitleBar coustomTitleBar = ApplicationView.GetForCurrentView().TitleBar;
coustomTitleBar.ButtonBackgroundColor = Colors.Transparent;
CoreApplicationViewTitleBar coreTitleBar = CoreApplication.GetCurrentView().TitleBar;
coreTitleBar.ExtendViewIntoTitleBar = true;
}
but when go to start/search the application name should display.
I searched for API documentation related to launch, and there is no public API to listen for users going to start/search.
Thank you.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.