Giter Club home page Giter Club logo

Comments (4)

rebeccaXam avatar rebeccaXam commented on July 2, 2024

Yes, you can change some styling of the header. The left/right navigation buttons and the title label are exposed by TitleLabel, TitleLeftArrow, TitleRightArrow and MonthNavigationLayout. The MonthNavigationLayout is the stack layout the label and buttons are embedded inside.

So changing some styling of the header would be:

calendar.TitleLeftArrow.TextColor = Color.Blue; // Set the text color of the left arrow to blue
calendar.TitleRightArrow.TextColor = Color.Blue; // Set the text color of the right arrow to blue
calendar.TitleLabel.TextColor = Color.Blue; // Set the text color of the header text to blue
calendar.TitleLabelFormat = "MM-yyyy"; // Set a different date format of the title label
calendar.MonthNavigationLayout.HeightRequest = 75; // Set the height of the header to 75
calendar.MonthNavigationLayout.BackgroundColor = Color.Green; // Set the background color of the header to green

If you really want to change the header and the above options are not enough, please hide the header by MonthNavigationShow= false and you can then place a custom header above the calendar. For custom month navigation add:

// Add this to an event, that will trigger the calendar to go 1 month back
calendar.StartDate = new DateTime(StartDate.Year, StartDate.Month, 1).AddMonths(-1);

// Add this to an event, that will trigger the calendar to go 1 month forward
calendar.StartDate = new DateTime(StartDate.Year, StartDate.Month, 1).AddMonths(1);

from xamforms.controls.calendar.

PlusInf0Iulia avatar PlusInf0Iulia commented on July 2, 2024

when i try to change calendar.WeekdaysTextColor o week days font size nothing happens. is it a bug?

from xamforms.controls.calendar.

rebeccaXam avatar rebeccaXam commented on July 2, 2024

Hey PlusInf0Iulia,
yes you are right. The default colors where not set at creation, my bad.
I will fix it in 1.0.6

from xamforms.controls.calendar.

rebeccaXam avatar rebeccaXam commented on July 2, 2024

Should be fixed now in 1.0.6

from xamforms.controls.calendar.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.