An open API service indexing awesome lists of open source software.

https://github.com/iotagtk1/gtkdatetimepicker

Calendar and time picker are available
https://github.com/iotagtk1/gtkdatetimepicker

csharp glade gtk gtk3 picker

Last synced: 2 months ago
JSON representation

Calendar and time picker are available

Awesome Lists containing this project

README

        

# GtkDateTimePicker

Calendar and time picker are available

![alt text](./GtkDateTimePicker/readMe/1.png)

```cs

DateDialog DateDialog1 = new DateDialog();

DateDialog1.DateTimeObj = DateTime.Now;

var r = DateDialog1.Run();

if (r == 1) {
Console.WriteLine(DateDialog1.DateTimeObj);
}

DateDialog1.Dispose();

```