-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDashboard.cs
61 lines (55 loc) · 2.17 KB
/
Dashboard.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Syncfusion.Windows.Forms;
using System.Data.SqlClient;
using Syncfusion.Schedule;
using Syncfusion.Windows.Forms.Schedule;
namespace SFCDB
{
public partial class Dashboard : MetroForm
{
SimpleScheduleDataProvider dataProvider = new SimpleScheduleDataProvider();
SimpleScheduleAppointmentList list = new SimpleScheduleAppointmentList();
string ConnectionString = @"Data Source=SYNCLAPN6099\SQLEXPRESS;Initial Catalog=ScheduleData;Integrated Security=True;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False";
public Dashboard()
{
InitializeComponent();
ReadData();
dataProvider.MasterList = list;
scheduleControl1.ScheduleType = ScheduleViewType.Month;
scheduleControl1.DataSource = dataProvider;
}
private void ReadData()
{
SqlConnection con = new SqlConnection(ConnectionString);
string sql = "select * from ScheduleData";
con.Open();
SqlCommand cmd = new SqlCommand(sql, con);
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
ScheduleAppointment item = new ScheduleAppointment();
item.UniqueID = (int)dr["UniqueID"];
item.Subject = (string)dr["Sub"];
item.StartTime = (DateTime)dr["StartTime"];
item.ReminderValue = (int)dr["ReminderValue"];
item.Reminder = false;
item.Owner = (int)dr["Own"];
item.MarkerValue = (int)dr["MarkerValue"];
item.LocationValue = (string)dr["LocationValue"];
item.LabelValue = 0;
item.EndTime = (DateTime)dr["EndDate"];
item.Content = (string)dr["Content"];
item.AllDay = false;
item.Dirty = false;
list.Add(item);
}
}
}
}