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