├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Assets ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png └── Wide310x150Logo.scale-200.png ├── Controls ├── CalendarViewDayLunarItem.cs └── CalendarViewDayLunarItem.xaml ├── Image.gif ├── LunarCalendar.csproj ├── LunarCalendar.sln ├── LunarCalendarConverter.cs ├── LunarExtension.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── README.md └── Themes └── Generic.xaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Controls/CalendarViewDayLunarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Controls/CalendarViewDayLunarItem.cs -------------------------------------------------------------------------------- /Controls/CalendarViewDayLunarItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Controls/CalendarViewDayLunarItem.xaml -------------------------------------------------------------------------------- /Image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Image.gif -------------------------------------------------------------------------------- /LunarCalendar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/LunarCalendar.csproj -------------------------------------------------------------------------------- /LunarCalendar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/LunarCalendar.sln -------------------------------------------------------------------------------- /LunarCalendarConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/LunarCalendarConverter.cs -------------------------------------------------------------------------------- /LunarExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/LunarExtension.cs -------------------------------------------------------------------------------- /MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/MainPage.xaml -------------------------------------------------------------------------------- /MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/MainPage.xaml.cs -------------------------------------------------------------------------------- /Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Package.appxmanifest -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Properties/Default.rd.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### UWP Calendar With Chinese Lunar 2 | ![](Image.gif) -------------------------------------------------------------------------------- /Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/LunarCalendar/HEAD/Themes/Generic.xaml --------------------------------------------------------------------------------