How to localize the today button in the HeaderView without HeaderTemplate

I would like to localize the today button,

Untitled.png

Is it also possible to have the xaml of the default HeaderTemplate ?

Thanks in advance.


1 Reply

VM Vidyalakshmi Mani Syncfusion Team February 4, 2025 02:48 PM UTC

Hi Fabrice,


Thank you for reaching out. To localize the "Today" button, you can add a `.resx` file to your application and specify the required words along with their corresponding localized texts. Then, in the `App.xaml.cs` file, you can configure it as follows.  


 

public partial class App : Application

{

    public App()

    {

        InitializeComponent();

        SfSchedulerResources.ResourceManager = new ResourceManager("MauiScheduler.Resources.SfScheduler", Application.Current.GetType().Assembly);

        MainPage = new AppShell();

    }

}

 


We have prepared a simple sample demonstrating this. Please check the attached sample for your reference. For detailed information, please refer to our UG documentation.  


To customize the header, you can utilize the `HeaderTemplate` property. Please refer to our UG documentation for more details.  


If you have any questions or need further assistance, please let us know.  

  

Regards,
Vidyalakshmi M.



Attachment: MauiScheduler_665e877.zip

Loader.
Up arrow icon