예제 #1
0
        private void ToggleChart(object sender, WWChartMask chart)
        {
            if (initializing)
            {
                return;
            }

            CheckBox box = sender as CheckBox;

            if (box.Checked)
            {
                dolphin.GiveChart(chart);
            }
            else
            {
                dolphin.RemoveChart(chart);
            }
        }
예제 #2
0
 private void testButton_Click(object sender, EventArgs e)
 {
     dolphin.GiveChart(WWChartMask.TinglesChart);
 }