FrmSystemSet.Designer.cs 83.1 KB
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
namespace SunVoteARSPPT
{
    partial class FrmSystemSet
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("投票背景");
            System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("收到按键");
            System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Show Response Result");
            System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("Show Correct Answer");
            this.btnOK = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.tctlSystemSet = new System.Windows.Forms.TabControl();
            this.tpgOprate = new System.Windows.Forms.TabPage();
            this.gbxVoteStatus = new System.Windows.Forms.GroupBox();
            this.picSBarStop = new System.Windows.Forms.PictureBox();
            this.picSBarVoting = new System.Windows.Forms.PictureBox();
            this.lblSBarStop = new System.Windows.Forms.Label();
            this.lblSBarVoting = new System.Windows.Forms.Label();
            this.btnSetPicSBarStop = new System.Windows.Forms.Button();
            this.btnSetPicSBarVoting = new System.Windows.Forms.Button();
            this.chkShowVoteStatus = new System.Windows.Forms.CheckBox();
            this.grpSet = new System.Windows.Forms.GroupBox();
            this.lblChartShow = new System.Windows.Forms.Label();
            this.cboChartShowOpt = new System.Windows.Forms.ComboBox();
            this.btnChartColorOpt = new System.Windows.Forms.Button();
            this.lblCharRate = new System.Windows.Forms.Label();
            this.lblOptionMode = new System.Windows.Forms.Label();
            this.lblModifyMode = new System.Windows.Forms.Label();
            this.cboChartRateOpt = new System.Windows.Forms.ComboBox();
            this.cboOptionModeOpt = new System.Windows.Forms.ComboBox();
            this.cboModifyModeOpt = new System.Windows.Forms.ComboBox();
            this.gbxRemoteControl = new System.Windows.Forms.GroupBox();
            this.chkRemoteControlEnabledR53 = new System.Windows.Forms.CheckBox();
            this.chkRemoteControlEnabledR52 = new System.Windows.Forms.CheckBox();
            this.chkRemoteControlEnabledR51 = new System.Windows.Forms.CheckBox();
            this.chkRemoteControlEnabled = new System.Windows.Forms.CheckBox();
            this.gbxAutoPage = new System.Windows.Forms.GroupBox();
            this.numDelayTime = new System.Windows.Forms.NumericUpDown();
            this.lblDelayTime = new System.Windows.Forms.Label();
            this.chkAllVoted = new System.Windows.Forms.CheckBox();
            this.chkTimeOut = new System.Windows.Forms.CheckBox();
            this.gbxAutoVote = new System.Windows.Forms.GroupBox();
            this.chkAutoVote = new System.Windows.Forms.CheckBox();
            this.gbDemo = new System.Windows.Forms.GroupBox();
            this.chkDemo = new System.Windows.Forms.CheckBox();
            this.gpToolBar = new System.Windows.Forms.GroupBox();
            this.chkToolBar = new System.Windows.Forms.CheckBox();
            this.tpgSystemSet = new System.Windows.Forms.TabPage();
            this.gbAddinType = new System.Windows.Forms.GroupBox();
            this.lblInfo = new System.Windows.Forms.Label();
            this.rbShotcut = new System.Windows.Forms.RadioButton();
            this.rbAuto = new System.Windows.Forms.RadioButton();
            this.gbxLanguage = new System.Windows.Forms.GroupBox();
            this.cboFont = new System.Windows.Forms.ComboBox();
            this.cboLanguage = new System.Windows.Forms.ComboBox();
            this.labFont = new System.Windows.Forms.Label();
            this.labLanguage = new System.Windows.Forms.Label();
            this.tpgSoundSet = new System.Windows.Forms.TabPage();
            this.lvwSound = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.btnSoundStop = new System.Windows.Forms.Button();
            this.btnSoundPlay = new System.Windows.Forms.Button();
            this.btnSoundBrowse = new System.Windows.Forms.Button();
            this.tpgSetAll = new System.Windows.Forms.TabPage();
            this.chkChartShowWindow = new System.Windows.Forms.CheckBox();
            this.gbxInsertSlideObject = new System.Windows.Forms.GroupBox();
            this.chkInsertNoVoteCount = new System.Windows.Forms.CheckBox();
            this.chkInsertVotedCount = new System.Windows.Forms.CheckBox();
            this.chkInsertVoterCount = new System.Windows.Forms.CheckBox();
            this.chkStopShowCorrectAsw = new System.Windows.Forms.CheckBox();
            this.chkNotVotedScore = new System.Windows.Forms.CheckBox();
            this.chkColorCW = new System.Windows.Forms.CheckBox();
            this.grbColorCW = new System.Windows.Forms.GroupBox();
            this.picColorWrong = new System.Windows.Forms.PictureBox();
            this.lblColorWrong = new System.Windows.Forms.Label();
            this.picColorCorrect = new System.Windows.Forms.PictureBox();
            this.lblColorCorrect = new System.Windows.Forms.Label();
            this.btnSetAll = new System.Windows.Forms.Button();
            this.gbChartSet = new System.Windows.Forms.GroupBox();
            this.cobPercentDec = new System.Windows.Forms.ComboBox();
            this.cobNumberDec = new System.Windows.Forms.ComboBox();
            this.chkDec = new System.Windows.Forms.CheckBox();
            this.cboChartShow = new System.Windows.Forms.ComboBox();
            this.cboShowType = new System.Windows.Forms.ComboBox();
            this.btnChartColor = new System.Windows.Forms.Button();
            this.chk3DShow = new System.Windows.Forms.CheckBox();
            this.cboChartRate = new System.Windows.Forms.ComboBox();
            this.chkCharRate = new System.Windows.Forms.CheckBox();
            this.chkChartShow = new System.Windows.Forms.CheckBox();
            this.cboChartLabel = new System.Windows.Forms.ComboBox();
            this.chkLableType = new System.Windows.Forms.CheckBox();
            this.cboChartType = new System.Windows.Forms.ComboBox();
            this.chkChartType = new System.Windows.Forms.CheckBox();
            this.gbKeySet = new System.Windows.Forms.GroupBox();
            this.cboOptionMode = new System.Windows.Forms.ComboBox();
            this.cboModifyMode = new System.Windows.Forms.ComboBox();
            this.chkOptionMode = new System.Windows.Forms.CheckBox();
            this.chkModifyMode = new System.Windows.Forms.CheckBox();
            this.grbVoteSet = new System.Windows.Forms.GroupBox();
            this.cboNameMode = new System.Windows.Forms.ComboBox();
            this.chkNameMode = new System.Windows.Forms.CheckBox();
            this.tabEmailSet = new System.Windows.Forms.TabPage();
            this.gbxEmailReport = new System.Windows.Forms.GroupBox();
            this.chkEmailReport = new System.Windows.Forms.CheckedListBox();
            this.gbxEmailIn = new System.Windows.Forms.GroupBox();
            this.txtEmailInAdds = new System.Windows.Forms.TextBox();
            this.labEmailInAdds = new System.Windows.Forms.Label();
            this.grpEmailOut = new System.Windows.Forms.GroupBox();
            this.txtEmailOut = new System.Windows.Forms.TextBox();
            this.labEmailOut = new System.Windows.Forms.Label();
            this.txtPort = new System.Windows.Forms.TextBox();
            this.txtPWD = new System.Windows.Forms.TextBox();
            this.txtServer = new System.Windows.Forms.TextBox();
            this.labEmailPort = new System.Windows.Forms.Label();
            this.labEmailServer = new System.Windows.Forms.Label();
            this.labEmailPWD = new System.Windows.Forms.Label();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.button1 = new System.Windows.Forms.Button();
            this.tctlSystemSet.SuspendLayout();
            this.tpgOprate.SuspendLayout();
            this.gbxVoteStatus.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picSBarStop)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picSBarVoting)).BeginInit();
            this.grpSet.SuspendLayout();
            this.gbxRemoteControl.SuspendLayout();
            this.gbxAutoPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numDelayTime)).BeginInit();
            this.gbxAutoVote.SuspendLayout();
            this.gbDemo.SuspendLayout();
            this.gpToolBar.SuspendLayout();
            this.tpgSystemSet.SuspendLayout();
            this.gbAddinType.SuspendLayout();
            this.gbxLanguage.SuspendLayout();
            this.tpgSoundSet.SuspendLayout();
            this.tpgSetAll.SuspendLayout();
            this.gbxInsertSlideObject.SuspendLayout();
            this.grbColorCW.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picColorWrong)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picColorCorrect)).BeginInit();
            this.gbChartSet.SuspendLayout();
            this.gbKeySet.SuspendLayout();
            this.grbVoteSet.SuspendLayout();
            this.tabEmailSet.SuspendLayout();
            this.gbxEmailReport.SuspendLayout();
            this.gbxEmailIn.SuspendLayout();
            this.grpEmailOut.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnOK
            // 
            this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnOK.AutoSize = true;
            this.btnOK.Location = new System.Drawing.Point(434, 528);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(75, 23);
            this.btnOK.TabIndex = 2;
            this.btnOK.Text = "确定";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.AutoSize = true;
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new System.Drawing.Point(515, 528);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(75, 23);
            this.btnCancel.TabIndex = 3;
            this.btnCancel.Text = "取消";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // tctlSystemSet
            // 
            this.tctlSystemSet.Controls.Add(this.tpgOprate);
            this.tctlSystemSet.Controls.Add(this.tpgSystemSet);
            this.tctlSystemSet.Controls.Add(this.tpgSoundSet);
            this.tctlSystemSet.Controls.Add(this.tpgSetAll);
            this.tctlSystemSet.Controls.Add(this.tabEmailSet);
            this.tctlSystemSet.Location = new System.Drawing.Point(12, 12);
            this.tctlSystemSet.Name = "tctlSystemSet";
            this.tctlSystemSet.SelectedIndex = 0;
            this.tctlSystemSet.Size = new System.Drawing.Size(582, 510);
            this.tctlSystemSet.TabIndex = 17;
            // 
            // tpgOprate
            // 
            this.tpgOprate.Controls.Add(this.gbxVoteStatus);
            this.tpgOprate.Controls.Add(this.grpSet);
            this.tpgOprate.Controls.Add(this.gbxRemoteControl);
            this.tpgOprate.Controls.Add(this.gbxAutoPage);
            this.tpgOprate.Controls.Add(this.gbxAutoVote);
            this.tpgOprate.Controls.Add(this.gbDemo);
            this.tpgOprate.Controls.Add(this.gpToolBar);
            this.tpgOprate.Location = new System.Drawing.Point(4, 22);
            this.tpgOprate.Name = "tpgOprate";
            this.tpgOprate.Padding = new System.Windows.Forms.Padding(3);
            this.tpgOprate.Size = new System.Drawing.Size(574, 484);
            this.tpgOprate.TabIndex = 2;
            this.tpgOprate.Text = "操作";
            this.tpgOprate.UseVisualStyleBackColor = true;
            // 
            // gbxVoteStatus
            // 
            this.gbxVoteStatus.Controls.Add(this.picSBarStop);
            this.gbxVoteStatus.Controls.Add(this.picSBarVoting);
            this.gbxVoteStatus.Controls.Add(this.lblSBarStop);
            this.gbxVoteStatus.Controls.Add(this.lblSBarVoting);
            this.gbxVoteStatus.Controls.Add(this.btnSetPicSBarStop);
            this.gbxVoteStatus.Controls.Add(this.btnSetPicSBarVoting);
            this.gbxVoteStatus.Controls.Add(this.chkShowVoteStatus);
            this.gbxVoteStatus.Location = new System.Drawing.Point(11, 318);
            this.gbxVoteStatus.Name = "gbxVoteStatus";
            this.gbxVoteStatus.Size = new System.Drawing.Size(528, 128);
            this.gbxVoteStatus.TabIndex = 10;
            this.gbxVoteStatus.TabStop = false;
            this.gbxVoteStatus.Text = "投票状态";
            // 
            // picSBarStop
            // 
            this.picSBarStop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.picSBarStop.Location = new System.Drawing.Point(284, 67);
            this.picSBarStop.Name = "picSBarStop";
            this.picSBarStop.Size = new System.Drawing.Size(182, 52);
            this.picSBarStop.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.picSBarStop.TabIndex = 2;
            this.picSBarStop.TabStop = false;
            // 
            // picSBarVoting
            // 
            this.picSBarVoting.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.picSBarVoting.Location = new System.Drawing.Point(12, 67);
            this.picSBarVoting.Name = "picSBarVoting";
            this.picSBarVoting.Size = new System.Drawing.Size(182, 52);
            this.picSBarVoting.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.picSBarVoting.TabIndex = 2;
            this.picSBarVoting.TabStop = false;
            // 
            // lblSBarStop
            // 
            this.lblSBarStop.AutoSize = true;
            this.lblSBarStop.Location = new System.Drawing.Point(286, 47);
            this.lblSBarStop.Name = "lblSBarStop";
            this.lblSBarStop.Size = new System.Drawing.Size(29, 12);
            this.lblSBarStop.TabIndex = 3;
            this.lblSBarStop.Text = "Stop";
            // 
            // lblSBarVoting
            // 
            this.lblSBarVoting.AutoSize = true;
            this.lblSBarVoting.Location = new System.Drawing.Point(15, 47);
            this.lblSBarVoting.Name = "lblSBarVoting";
            this.lblSBarVoting.Size = new System.Drawing.Size(35, 12);
            this.lblSBarVoting.TabIndex = 3;
            this.lblSBarVoting.Text = "Start";
            // 
            // btnSetPicSBarStop
            // 
            this.btnSetPicSBarStop.Location = new System.Drawing.Point(414, 40);
            this.btnSetPicSBarStop.Name = "btnSetPicSBarStop";
            this.btnSetPicSBarStop.Size = new System.Drawing.Size(52, 23);
            this.btnSetPicSBarStop.TabIndex = 1;
            this.btnSetPicSBarStop.Text = "...";
            this.btnSetPicSBarStop.UseVisualStyleBackColor = true;
            this.btnSetPicSBarStop.Click += new System.EventHandler(this.btnSetPicSBarStop_Click);
            // 
            // btnSetPicSBarVoting
            // 
            this.btnSetPicSBarVoting.Location = new System.Drawing.Point(142, 40);
            this.btnSetPicSBarVoting.Name = "btnSetPicSBarVoting";
            this.btnSetPicSBarVoting.Size = new System.Drawing.Size(52, 23);
            this.btnSetPicSBarVoting.TabIndex = 1;
            this.btnSetPicSBarVoting.Text = "...";
            this.btnSetPicSBarVoting.UseVisualStyleBackColor = true;
            this.btnSetPicSBarVoting.Click += new System.EventHandler(this.btnSetPicSBarVoting_Click);
            // 
            // chkShowVoteStatus
            // 
            this.chkShowVoteStatus.AutoSize = true;
            this.chkShowVoteStatus.Location = new System.Drawing.Point(15, 22);
            this.chkShowVoteStatus.Name = "chkShowVoteStatus";
            this.chkShowVoteStatus.Size = new System.Drawing.Size(180, 16);
            this.chkShowVoteStatus.TabIndex = 0;
            this.chkShowVoteStatus.Text = "隐藏控制栏后,显示投票状态";
            this.chkShowVoteStatus.UseVisualStyleBackColor = true;
            // 
            // grpSet
            // 
            this.grpSet.Controls.Add(this.lblChartShow);
            this.grpSet.Controls.Add(this.cboChartShowOpt);
            this.grpSet.Controls.Add(this.btnChartColorOpt);
            this.grpSet.Controls.Add(this.lblCharRate);
            this.grpSet.Controls.Add(this.lblOptionMode);
            this.grpSet.Controls.Add(this.lblModifyMode);
            this.grpSet.Controls.Add(this.cboChartRateOpt);
            this.grpSet.Controls.Add(this.cboOptionModeOpt);
            this.grpSet.Controls.Add(this.cboModifyModeOpt);
            this.grpSet.Location = new System.Drawing.Point(11, 236);
            this.grpSet.Name = "grpSet";
            this.grpSet.Size = new System.Drawing.Size(528, 76);
            this.grpSet.TabIndex = 9;
            this.grpSet.TabStop = false;
            this.grpSet.Text = "全局参数";
            // 
            // lblChartShow
            // 
            this.lblChartShow.AutoSize = true;
            this.lblChartShow.Location = new System.Drawing.Point(200, 50);
            this.lblChartShow.Name = "lblChartShow";
            this.lblChartShow.Size = new System.Drawing.Size(53, 12);
            this.lblChartShow.TabIndex = 36;
            this.lblChartShow.Text = "显示时机";
            // 
            // cboChartShowOpt
            // 
            this.cboChartShowOpt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboChartShowOpt.FormattingEnabled = true;
            this.cboChartShowOpt.Items.AddRange(new object[] {
            "停止时显示",
            "开始时显示",
            "手动显示"});
            this.cboChartShowOpt.Location = new System.Drawing.Point(284, 46);
            this.cboChartShowOpt.Name = "cboChartShowOpt";
            this.cboChartShowOpt.Size = new System.Drawing.Size(89, 20);
            this.cboChartShowOpt.TabIndex = 35;
            this.cboChartShowOpt.SelectedIndexChanged += new System.EventHandler(this.cboChartShowOpt_SelectedIndexChanged);
            // 
            // btnChartColorOpt
            // 
            this.btnChartColorOpt.AutoSize = true;
            this.btnChartColorOpt.Location = new System.Drawing.Point(379, 42);
            this.btnChartColorOpt.Name = "btnChartColorOpt";
            this.btnChartColorOpt.Size = new System.Drawing.Size(125, 25);
            this.btnChartColorOpt.TabIndex = 34;
            this.btnChartColorOpt.Text = "图表选项颜色设置";
            this.btnChartColorOpt.UseVisualStyleBackColor = true;
            this.btnChartColorOpt.Click += new System.EventHandler(this.btnChartColor_Click);
            // 
            // lblCharRate
            // 
            this.lblCharRate.AutoSize = true;
            this.lblCharRate.Location = new System.Drawing.Point(200, 23);
            this.lblCharRate.Name = "lblCharRate";
            this.lblCharRate.Size = new System.Drawing.Size(53, 12);
            this.lblCharRate.TabIndex = 33;
            this.lblCharRate.Text = "比率统计";
            // 
            // lblOptionMode
            // 
            this.lblOptionMode.AutoSize = true;
            this.lblOptionMode.Location = new System.Drawing.Point(13, 49);
            this.lblOptionMode.Name = "lblOptionMode";
            this.lblOptionMode.Size = new System.Drawing.Size(53, 12);
            this.lblOptionMode.TabIndex = 32;
            this.lblOptionMode.Text = "选项格式";
            // 
            // lblModifyMode
            // 
            this.lblModifyMode.AutoSize = true;
            this.lblModifyMode.Location = new System.Drawing.Point(13, 23);
            this.lblModifyMode.Name = "lblModifyMode";
            this.lblModifyMode.Size = new System.Drawing.Size(53, 12);
            this.lblModifyMode.TabIndex = 31;
            this.lblModifyMode.Text = "修改模式";
            // 
            // cboChartRateOpt
            // 
            this.cboChartRateOpt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboChartRateOpt.FormattingEnabled = true;
            this.cboChartRateOpt.Items.AddRange(new object[] {
            "按参与人数",
            "按提交人数"});
            this.cboChartRateOpt.Location = new System.Drawing.Point(284, 20);
            this.cboChartRateOpt.Name = "cboChartRateOpt";
            this.cboChartRateOpt.Size = new System.Drawing.Size(89, 20);
            this.cboChartRateOpt.TabIndex = 30;
            this.cboChartRateOpt.SelectedIndexChanged += new System.EventHandler(this.cboCharRateOpt_SelectedIndexChanged);
            // 
            // cboOptionModeOpt
            // 
            this.cboOptionModeOpt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboOptionModeOpt.FormattingEnabled = true;
            this.cboOptionModeOpt.Items.AddRange(new object[] {
            "1234",
            "ABCD"});
            this.cboOptionModeOpt.Location = new System.Drawing.Point(103, 47);
            this.cboOptionModeOpt.Name = "cboOptionModeOpt";
            this.cboOptionModeOpt.Size = new System.Drawing.Size(91, 20);
            this.cboOptionModeOpt.TabIndex = 28;
            this.cboOptionModeOpt.SelectedIndexChanged += new System.EventHandler(this.cboOptionModeOpt_SelectedIndexChanged);
            // 
            // cboModifyModeOpt
            // 
            this.cboModifyModeOpt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboModifyModeOpt.FormattingEnabled = true;
            this.cboModifyModeOpt.Items.AddRange(new object[] {
            "允许修改",
            "不允许修改"});
            this.cboModifyModeOpt.Location = new System.Drawing.Point(103, 20);
            this.cboModifyModeOpt.Name = "cboModifyModeOpt";
            this.cboModifyModeOpt.Size = new System.Drawing.Size(91, 20);
            this.cboModifyModeOpt.TabIndex = 29;
            this.cboModifyModeOpt.SelectedIndexChanged += new System.EventHandler(this.cboModifyModeOpt_SelectedIndexChanged);
            // 
            // gbxRemoteControl
            // 
            this.gbxRemoteControl.Controls.Add(this.chkRemoteControlEnabledR53);
            this.gbxRemoteControl.Controls.Add(this.chkRemoteControlEnabledR52);
            this.gbxRemoteControl.Controls.Add(this.chkRemoteControlEnabledR51);
            this.gbxRemoteControl.Controls.Add(this.chkRemoteControlEnabled);
            this.gbxRemoteControl.Location = new System.Drawing.Point(11, 93);
            this.gbxRemoteControl.Name = "gbxRemoteControl";
            this.gbxRemoteControl.Size = new System.Drawing.Size(528, 78);
            this.gbxRemoteControl.TabIndex = 3;
            this.gbxRemoteControl.TabStop = false;
            this.gbxRemoteControl.Text = "PPT遥控器设置";
            // 
            // chkRemoteControlEnabledR53
            // 
            this.chkRemoteControlEnabledR53.AutoSize = true;
            this.chkRemoteControlEnabledR53.Location = new System.Drawing.Point(305, 47);
            this.chkRemoteControlEnabledR53.Name = "chkRemoteControlEnabledR53";
            this.chkRemoteControlEnabledR53.Size = new System.Drawing.Size(42, 16);
            this.chkRemoteControlEnabledR53.TabIndex = 0;
            this.chkRemoteControlEnabledR53.Tag = "R53";
            this.chkRemoteControlEnabledR53.Text = "R53";
            this.chkRemoteControlEnabledR53.UseVisualStyleBackColor = true;
            this.chkRemoteControlEnabledR53.CheckedChanged += new System.EventHandler(this.chkRemoteControlEnabled_CheckedChanged);
            // 
            // chkRemoteControlEnabledR52
            // 
            this.chkRemoteControlEnabledR52.AutoSize = true;
            this.chkRemoteControlEnabledR52.Location = new System.Drawing.Point(15, 47);
            this.chkRemoteControlEnabledR52.Name = "chkRemoteControlEnabledR52";
            this.chkRemoteControlEnabledR52.Size = new System.Drawing.Size(42, 16);
            this.chkRemoteControlEnabledR52.TabIndex = 0;
            this.chkRemoteControlEnabledR52.Tag = "R52";
            this.chkRemoteControlEnabledR52.Text = "R52";
            this.chkRemoteControlEnabledR52.UseVisualStyleBackColor = true;
            this.chkRemoteControlEnabledR52.CheckedChanged += new System.EventHandler(this.chkRemoteControlEnabled_CheckedChanged);
            // 
            // chkRemoteControlEnabledR51
            // 
            this.chkRemoteControlEnabledR51.AutoSize = true;
            this.chkRemoteControlEnabledR51.Location = new System.Drawing.Point(305, 20);
            this.chkRemoteControlEnabledR51.Name = "chkRemoteControlEnabledR51";
            this.chkRemoteControlEnabledR51.Size = new System.Drawing.Size(42, 16);
            this.chkRemoteControlEnabledR51.TabIndex = 0;
            this.chkRemoteControlEnabledR51.Tag = "R51";
            this.chkRemoteControlEnabledR51.Text = "R51";
            this.chkRemoteControlEnabledR51.UseVisualStyleBackColor = true;
            this.chkRemoteControlEnabledR51.CheckedChanged += new System.EventHandler(this.chkRemoteControlEnabled_CheckedChanged);
            // 
            // chkRemoteControlEnabled
            // 
            this.chkRemoteControlEnabled.AutoSize = true;
            this.chkRemoteControlEnabled.Location = new System.Drawing.Point(15, 20);
            this.chkRemoteControlEnabled.Name = "chkRemoteControlEnabled";
            this.chkRemoteControlEnabled.Size = new System.Drawing.Size(102, 16);
            this.chkRemoteControlEnabled.TabIndex = 0;
            this.chkRemoteControlEnabled.Tag = "50R";
            this.chkRemoteControlEnabled.Text = "启用50R遥控器";
            this.chkRemoteControlEnabled.UseVisualStyleBackColor = true;
            this.chkRemoteControlEnabled.CheckedChanged += new System.EventHandler(this.chkRemoteControlEnabled_CheckedChanged);
            // 
            // gbxAutoPage
            // 
            this.gbxAutoPage.Controls.Add(this.numDelayTime);
            this.gbxAutoPage.Controls.Add(this.lblDelayTime);
            this.gbxAutoPage.Controls.Add(this.chkAllVoted);
            this.gbxAutoPage.Controls.Add(this.chkTimeOut);
            this.gbxAutoPage.Location = new System.Drawing.Point(11, 16);
            this.gbxAutoPage.Name = "gbxAutoPage";
            this.gbxAutoPage.Size = new System.Drawing.Size(528, 71);
            this.gbxAutoPage.TabIndex = 3;
            this.gbxAutoPage.TabStop = false;
            this.gbxAutoPage.Text = "自动换题设置";
            // 
            // numDelayTime
            // 
            this.numDelayTime.AutoSize = true;
            this.numDelayTime.Location = new System.Drawing.Point(305, 40);
            this.numDelayTime.Maximum = new decimal(new int[] {
            600,
            0,
            0,
            0});
            this.numDelayTime.Name = "numDelayTime";
            this.numDelayTime.Size = new System.Drawing.Size(89, 21);
            this.numDelayTime.TabIndex = 3;
            this.numDelayTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.numDelayTime.Value = new decimal(new int[] {
            30,
            0,
            0,
            0});
            // 
            // lblDelayTime
            // 
            this.lblDelayTime.AutoSize = true;
            this.lblDelayTime.Location = new System.Drawing.Point(303, 22);
            this.lblDelayTime.Name = "lblDelayTime";
            this.lblDelayTime.Size = new System.Drawing.Size(113, 12);
            this.lblDelayTime.TabIndex = 2;
            this.lblDelayTime.Text = "自动换题时间(秒)";
            // 
            // chkAllVoted
            // 
            this.chkAllVoted.AutoSize = true;
            this.chkAllVoted.Location = new System.Drawing.Point(12, 43);
            this.chkAllVoted.Name = "chkAllVoted";
            this.chkAllVoted.Size = new System.Drawing.Size(120, 16);
            this.chkAllVoted.TabIndex = 1;
            this.chkAllVoted.Text = "所有人员反馈完时";
            this.chkAllVoted.UseVisualStyleBackColor = true;
            // 
            // chkTimeOut
            // 
            this.chkTimeOut.AutoSize = true;
            this.chkTimeOut.Location = new System.Drawing.Point(12, 21);
            this.chkTimeOut.Name = "chkTimeOut";
            this.chkTimeOut.Size = new System.Drawing.Size(96, 16);
            this.chkTimeOut.TabIndex = 0;
            this.chkTimeOut.Text = "反馈时间结束";
            this.chkTimeOut.UseVisualStyleBackColor = true;
            // 
            // gbxAutoVote
            // 
            this.gbxAutoVote.Controls.Add(this.chkAutoVote);
            this.gbxAutoVote.Location = new System.Drawing.Point(215, 177);
            this.gbxAutoVote.Name = "gbxAutoVote";
            this.gbxAutoVote.Size = new System.Drawing.Size(404, 52);
            this.gbxAutoVote.TabIndex = 10;
            this.gbxAutoVote.TabStop = false;
            this.gbxAutoVote.Text = "自动启动投票";
            // 
            // chkAutoVote
            // 
            this.chkAutoVote.AutoSize = true;
            this.chkAutoVote.Location = new System.Drawing.Point(15, 22);
            this.chkAutoVote.Name = "chkAutoVote";
            this.chkAutoVote.Size = new System.Drawing.Size(168, 16);
            this.chkAutoVote.TabIndex = 0;
            this.chkAutoVote.Text = "播放和翻页时自动启动反馈";
            this.chkAutoVote.UseVisualStyleBackColor = true;
            // 
            // gbDemo
            // 
            this.gbDemo.Controls.Add(this.chkDemo);
            this.gbDemo.Location = new System.Drawing.Point(11, 178);
            this.gbDemo.Name = "gbDemo";
            this.gbDemo.Size = new System.Drawing.Size(528, 52);
            this.gbDemo.TabIndex = 8;
            this.gbDemo.TabStop = false;
            this.gbDemo.Text = "演示模式";
            // 
            // chkDemo
            // 
            this.chkDemo.AutoSize = true;
            this.chkDemo.Location = new System.Drawing.Point(15, 23);
            this.chkDemo.Name = "chkDemo";
            this.chkDemo.Size = new System.Drawing.Size(120, 16);
            this.chkDemo.TabIndex = 0;
            this.chkDemo.Text = "是否启用演示模式";
            this.chkDemo.UseVisualStyleBackColor = true;
            // 
            // gpToolBar
            // 
            this.gpToolBar.Controls.Add(this.chkToolBar);
            this.gpToolBar.Location = new System.Drawing.Point(11, 178);
            this.gpToolBar.Name = "gpToolBar";
            this.gpToolBar.Size = new System.Drawing.Size(528, 55);
            this.gpToolBar.TabIndex = 10;
            this.gpToolBar.TabStop = false;
            this.gpToolBar.Text = "控制条显示设置";
            this.gpToolBar.Visible = false;
            // 
            // chkToolBar
            // 
            this.chkToolBar.AutoSize = true;
            this.chkToolBar.Location = new System.Drawing.Point(15, 20);
            this.chkToolBar.Name = "chkToolBar";
            this.chkToolBar.Size = new System.Drawing.Size(144, 16);
            this.chkToolBar.TabIndex = 0;
            this.chkToolBar.Text = "是否放映时显示工具条";
            this.chkToolBar.UseVisualStyleBackColor = true;
            // 
            // tpgSystemSet
            // 
            this.tpgSystemSet.Controls.Add(this.gbAddinType);
            this.tpgSystemSet.Controls.Add(this.gbxLanguage);
            this.tpgSystemSet.Location = new System.Drawing.Point(4, 22);
            this.tpgSystemSet.Name = "tpgSystemSet";
            this.tpgSystemSet.Padding = new System.Windows.Forms.Padding(3);
            this.tpgSystemSet.Size = new System.Drawing.Size(574, 484);
            this.tpgSystemSet.TabIndex = 0;
            this.tpgSystemSet.Text = "语言";
            this.tpgSystemSet.UseVisualStyleBackColor = true;
            // 
            // gbAddinType
            // 
            this.gbAddinType.Controls.Add(this.lblInfo);
            this.gbAddinType.Controls.Add(this.rbShotcut);
            this.gbAddinType.Controls.Add(this.rbAuto);
            this.gbAddinType.Location = new System.Drawing.Point(16, 107);
            this.gbAddinType.Name = "gbAddinType";
            this.gbAddinType.Size = new System.Drawing.Size(510, 107);
            this.gbAddinType.TabIndex = 7;
            this.gbAddinType.TabStop = false;
            this.gbAddinType.Text = "加载方式设置";
            // 
            // lblInfo
            // 
            this.lblInfo.AutoSize = true;
            this.lblInfo.Location = new System.Drawing.Point(12, 68);
            this.lblInfo.Name = "lblInfo";
            this.lblInfo.Size = new System.Drawing.Size(209, 12);
            this.lblInfo.TabIndex = 9;
            this.lblInfo.Text = "注:加载方式,只允许管理员用户更改";
            // 
            // rbShotcut
            // 
            this.rbShotcut.AutoSize = true;
            this.rbShotcut.Location = new System.Drawing.Point(267, 32);
            this.rbShotcut.Name = "rbShotcut";
            this.rbShotcut.Size = new System.Drawing.Size(95, 16);
            this.rbShotcut.TabIndex = 1;
            this.rbShotcut.TabStop = true;
            this.rbShotcut.Text = "快捷方式加载";
            this.rbShotcut.UseVisualStyleBackColor = true;
            // 
            // rbAuto
            // 
            this.rbAuto.AutoSize = true;
            this.rbAuto.Location = new System.Drawing.Point(14, 32);
            this.rbAuto.Name = "rbAuto";
            this.rbAuto.Size = new System.Drawing.Size(113, 16);
            this.rbAuto.TabIndex = 0;
            this.rbAuto.TabStop = true;
            this.rbAuto.Text = "打开PPT自动加载";
            this.rbAuto.UseVisualStyleBackColor = true;
            // 
            // gbxLanguage
            // 
            this.gbxLanguage.Controls.Add(this.cboFont);
            this.gbxLanguage.Controls.Add(this.cboLanguage);
            this.gbxLanguage.Controls.Add(this.labFont);
            this.gbxLanguage.Controls.Add(this.labLanguage);
            this.gbxLanguage.Location = new System.Drawing.Point(15, 11);
            this.gbxLanguage.Name = "gbxLanguage";
            this.gbxLanguage.Size = new System.Drawing.Size(510, 90);
            this.gbxLanguage.TabIndex = 0;
            this.gbxLanguage.TabStop = false;
            this.gbxLanguage.Text = "系统语言";
            // 
            // cboFont
            // 
            this.cboFont.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboFont.FormattingEnabled = true;
            this.cboFont.Items.AddRange(new object[] {
            "英文",
            "简体中文",
            "繁体中文",
            "日语"});
            this.cboFont.Location = new System.Drawing.Point(268, 50);
            this.cboFont.Name = "cboFont";
            this.cboFont.Size = new System.Drawing.Size(223, 20);
            this.cboFont.TabIndex = 2;
            // 
            // cboLanguage
            // 
            this.cboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboLanguage.FormattingEnabled = true;
            this.cboLanguage.Items.AddRange(new object[] {
            "英文",
            "简体中文",
            "繁体中文",
            "日语"});
            this.cboLanguage.Location = new System.Drawing.Point(15, 50);
            this.cboLanguage.Name = "cboLanguage";
            this.cboLanguage.Size = new System.Drawing.Size(229, 20);
            this.cboLanguage.TabIndex = 2;
            // 
            // labFont
            // 
            this.labFont.AutoSize = true;
            this.labFont.Location = new System.Drawing.Point(266, 32);
            this.labFont.Name = "labFont";
            this.labFont.Size = new System.Drawing.Size(29, 12);
            this.labFont.TabIndex = 3;
            this.labFont.Text = "字体";
            // 
            // labLanguage
            // 
            this.labLanguage.AutoSize = true;
            this.labLanguage.Location = new System.Drawing.Point(13, 32);
            this.labLanguage.Name = "labLanguage";
            this.labLanguage.Size = new System.Drawing.Size(29, 12);
            this.labLanguage.TabIndex = 3;
            this.labLanguage.Text = "语言";
            // 
            // tpgSoundSet
            // 
            this.tpgSoundSet.Controls.Add(this.lvwSound);
            this.tpgSoundSet.Controls.Add(this.btnSoundStop);
            this.tpgSoundSet.Controls.Add(this.btnSoundPlay);
            this.tpgSoundSet.Controls.Add(this.btnSoundBrowse);
            this.tpgSoundSet.Location = new System.Drawing.Point(4, 22);
            this.tpgSoundSet.Name = "tpgSoundSet";
            this.tpgSoundSet.Padding = new System.Windows.Forms.Padding(3);
            this.tpgSoundSet.Size = new System.Drawing.Size(574, 484);
            this.tpgSoundSet.TabIndex = 1;
            this.tpgSoundSet.Text = "音效设置";
            this.tpgSoundSet.UseVisualStyleBackColor = true;
            // 
            // lvwSound
            // 
            this.lvwSound.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lvwSound.CheckBoxes = true;
            this.lvwSound.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader5});
            this.lvwSound.FullRowSelect = true;
            this.lvwSound.HideSelection = false;
            listViewItem1.StateImageIndex = 0;
            listViewItem2.StateImageIndex = 0;
            listViewItem3.StateImageIndex = 0;
            listViewItem4.StateImageIndex = 0;
            this.lvwSound.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
            listViewItem1,
            listViewItem2,
            listViewItem3,
            listViewItem4});
            this.lvwSound.Location = new System.Drawing.Point(10, 12);
            this.lvwSound.Name = "lvwSound";
            this.lvwSound.Size = new System.Drawing.Size(555, 400);
            this.lvwSound.TabIndex = 31;
            this.lvwSound.UseCompatibleStateImageBehavior = false;
            this.lvwSound.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "类别";
            this.columnHeader1.Width = 183;
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "路径";
            this.columnHeader5.Width = 306;
            // 
            // btnSoundStop
            // 
            this.btnSoundStop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSoundStop.AutoSize = true;
            this.btnSoundStop.Location = new System.Drawing.Point(212, 451);
            this.btnSoundStop.Name = "btnSoundStop";
            this.btnSoundStop.Size = new System.Drawing.Size(95, 23);
            this.btnSoundStop.TabIndex = 9;
            this.btnSoundStop.Text = "停止";
            this.btnSoundStop.UseVisualStyleBackColor = true;
            this.btnSoundStop.Click += new System.EventHandler(this.btnSoundStop_Click);
            // 
            // btnSoundPlay
            // 
            this.btnSoundPlay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSoundPlay.AutoSize = true;
            this.btnSoundPlay.Location = new System.Drawing.Point(111, 451);
            this.btnSoundPlay.Name = "btnSoundPlay";
            this.btnSoundPlay.Size = new System.Drawing.Size(95, 23);
            this.btnSoundPlay.TabIndex = 6;
            this.btnSoundPlay.Text = "播放";
            this.btnSoundPlay.UseVisualStyleBackColor = true;
            this.btnSoundPlay.Click += new System.EventHandler(this.btnSoundPlay_Click);
            // 
            // btnSoundBrowse
            // 
            this.btnSoundBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSoundBrowse.AutoSize = true;
            this.btnSoundBrowse.Location = new System.Drawing.Point(10, 451);
            this.btnSoundBrowse.Name = "btnSoundBrowse";
            this.btnSoundBrowse.Size = new System.Drawing.Size(95, 23);
            this.btnSoundBrowse.TabIndex = 1;
            this.btnSoundBrowse.Text = "浏览...";
            this.btnSoundBrowse.UseVisualStyleBackColor = true;
            this.btnSoundBrowse.Click += new System.EventHandler(this.btnSoundBrowse_Click);
            // 
            // tpgSetAll
            // 
            this.tpgSetAll.Controls.Add(this.chkChartShowWindow);
            this.tpgSetAll.Controls.Add(this.gbxInsertSlideObject);
            this.tpgSetAll.Controls.Add(this.chkStopShowCorrectAsw);
            this.tpgSetAll.Controls.Add(this.chkNotVotedScore);
            this.tpgSetAll.Controls.Add(this.chkColorCW);
            this.tpgSetAll.Controls.Add(this.grbColorCW);
            this.tpgSetAll.Controls.Add(this.btnSetAll);
            this.tpgSetAll.Controls.Add(this.gbChartSet);
            this.tpgSetAll.Controls.Add(this.gbKeySet);
            this.tpgSetAll.Controls.Add(this.grbVoteSet);
            this.tpgSetAll.Location = new System.Drawing.Point(4, 22);
            this.tpgSetAll.Name = "tpgSetAll";
            this.tpgSetAll.Padding = new System.Windows.Forms.Padding(3);
            this.tpgSetAll.Size = new System.Drawing.Size(574, 484);
            this.tpgSetAll.TabIndex = 3;
            this.tpgSetAll.Text = "全局设置";
            this.tpgSetAll.UseVisualStyleBackColor = true;
            this.tpgSetAll.Click += new System.EventHandler(this.tpgSetAll_Click);
            // 
            // chkChartShowWindow
            // 
            this.chkChartShowWindow.ForeColor = System.Drawing.SystemColors.ControlText;
            this.chkChartShowWindow.Location = new System.Drawing.Point(271, 383);
            this.chkChartShowWindow.Margin = new System.Windows.Forms.Padding(2);
            this.chkChartShowWindow.Name = "chkChartShowWindow";
            this.chkChartShowWindow.Size = new System.Drawing.Size(261, 38);
            this.chkChartShowWindow.TabIndex = 26;
            this.chkChartShowWindow.Text = "图表总是弹窗显示(在动画播放时启用)";
            this.chkChartShowWindow.UseVisualStyleBackColor = true;
            // 
            // gbxInsertSlideObject
            // 
            this.gbxInsertSlideObject.Controls.Add(this.chkInsertNoVoteCount);
            this.gbxInsertSlideObject.Controls.Add(this.chkInsertVotedCount);
            this.gbxInsertSlideObject.Controls.Add(this.chkInsertVoterCount);
            this.gbxInsertSlideObject.Location = new System.Drawing.Point(271, 285);
            this.gbxInsertSlideObject.Name = "gbxInsertSlideObject";
            this.gbxInsertSlideObject.Size = new System.Drawing.Size(261, 92);
            this.gbxInsertSlideObject.TabIndex = 25;
            this.gbxInsertSlideObject.TabStop = false;
            this.gbxInsertSlideObject.Text = "新建反馈反馈幻灯片时插入对象";
            // 
            // chkInsertNoVoteCount
            // 
            this.chkInsertNoVoteCount.AutoSize = true;
            this.chkInsertNoVoteCount.Location = new System.Drawing.Point(34, 66);
            this.chkInsertNoVoteCount.Name = "chkInsertNoVoteCount";
            this.chkInsertNoVoteCount.Size = new System.Drawing.Size(72, 16);
            this.chkInsertNoVoteCount.TabIndex = 24;
            this.chkInsertNoVoteCount.Text = "反馈人数";
            this.chkInsertNoVoteCount.UseVisualStyleBackColor = true;
            // 
            // chkInsertVotedCount
            // 
            this.chkInsertVotedCount.AutoSize = true;
            this.chkInsertVotedCount.Location = new System.Drawing.Point(34, 44);
            this.chkInsertVotedCount.Name = "chkInsertVotedCount";
            this.chkInsertVotedCount.Size = new System.Drawing.Size(72, 16);
            this.chkInsertVotedCount.TabIndex = 24;
            this.chkInsertVotedCount.Text = "未按人数";
            this.chkInsertVotedCount.UseVisualStyleBackColor = true;
            // 
            // chkInsertVoterCount
            // 
            this.chkInsertVoterCount.AutoSize = true;
            this.chkInsertVoterCount.Location = new System.Drawing.Point(34, 22);
            this.chkInsertVoterCount.Name = "chkInsertVoterCount";
            this.chkInsertVoterCount.Size = new System.Drawing.Size(72, 16);
            this.chkInsertVoterCount.TabIndex = 24;
            this.chkInsertVoterCount.Text = "参与人数";
            this.chkInsertVoterCount.UseVisualStyleBackColor = true;
            // 
            // chkStopShowCorrectAsw
            // 
            this.chkStopShowCorrectAsw.Location = new System.Drawing.Point(12, 431);
            this.chkStopShowCorrectAsw.Name = "chkStopShowCorrectAsw";
            this.chkStopShowCorrectAsw.Size = new System.Drawing.Size(253, 38);
            this.chkStopShowCorrectAsw.TabIndex = 23;
            this.chkStopShowCorrectAsw.Text = "停止时自动显示正确答案";
            this.chkStopShowCorrectAsw.UseVisualStyleBackColor = true;
            // 
            // chkNotVotedScore
            // 
            this.chkNotVotedScore.Location = new System.Drawing.Point(12, 383);
            this.chkNotVotedScore.Name = "chkNotVotedScore";
            this.chkNotVotedScore.Size = new System.Drawing.Size(253, 38);
            this.chkNotVotedScore.TabIndex = 23;
            this.chkNotVotedScore.Text = "未答者按答错分扣分";
            this.chkNotVotedScore.UseVisualStyleBackColor = true;
            // 
            // chkColorCW
            // 
            this.chkColorCW.AutoSize = true;
            this.chkColorCW.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.chkColorCW.Location = new System.Drawing.Point(18, 285);
            this.chkColorCW.Name = "chkColorCW";
            this.chkColorCW.Size = new System.Drawing.Size(156, 16);
            this.chkColorCW.TabIndex = 0;
            this.chkColorCW.Text = "图表选项颜色-答对/答错";
            this.chkColorCW.UseVisualStyleBackColor = false;
            this.chkColorCW.CheckedChanged += new System.EventHandler(this.chkColorCW_CheckedChanged);
            // 
            // grbColorCW
            // 
            this.grbColorCW.Controls.Add(this.picColorWrong);
            this.grbColorCW.Controls.Add(this.lblColorWrong);
            this.grbColorCW.Controls.Add(this.picColorCorrect);
            this.grbColorCW.Controls.Add(this.lblColorCorrect);
            this.grbColorCW.Enabled = false;
            this.grbColorCW.Location = new System.Drawing.Point(12, 285);
            this.grbColorCW.Name = "grbColorCW";
            this.grbColorCW.Size = new System.Drawing.Size(253, 91);
            this.grbColorCW.TabIndex = 22;
            this.grbColorCW.TabStop = false;
            // 
            // picColorWrong
            // 
            this.picColorWrong.BackColor = System.Drawing.Color.Red;
            this.picColorWrong.Location = new System.Drawing.Point(103, 54);
            this.picColorWrong.Name = "picColorWrong";
            this.picColorWrong.Size = new System.Drawing.Size(114, 21);
            this.picColorWrong.TabIndex = 2;
            this.picColorWrong.TabStop = false;
            this.picColorWrong.Click += new System.EventHandler(this.picColorSet_Click);
            // 
            // lblColorWrong
            // 
            this.lblColorWrong.Location = new System.Drawing.Point(-3, 54);
            this.lblColorWrong.Name = "lblColorWrong";
            this.lblColorWrong.Size = new System.Drawing.Size(100, 21);
            this.lblColorWrong.TabIndex = 1;
            this.lblColorWrong.Text = "答错";
            this.lblColorWrong.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // picColorCorrect
            // 
            this.picColorCorrect.BackColor = System.Drawing.Color.Lime;
            this.picColorCorrect.Location = new System.Drawing.Point(103, 24);
            this.picColorCorrect.Name = "picColorCorrect";
            this.picColorCorrect.Size = new System.Drawing.Size(114, 21);
            this.picColorCorrect.TabIndex = 2;
            this.picColorCorrect.TabStop = false;
            this.picColorCorrect.Click += new System.EventHandler(this.picColorSet_Click);
            // 
            // lblColorCorrect
            // 
            this.lblColorCorrect.Location = new System.Drawing.Point(-3, 24);
            this.lblColorCorrect.Name = "lblColorCorrect";
            this.lblColorCorrect.Size = new System.Drawing.Size(100, 21);
            this.lblColorCorrect.TabIndex = 1;
            this.lblColorCorrect.Text = "答对";
            this.lblColorCorrect.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // btnSetAll
            // 
            this.btnSetAll.AutoSize = true;
            this.btnSetAll.Enabled = false;
            this.btnSetAll.Location = new System.Drawing.Point(12, 251);
            this.btnSetAll.Name = "btnSetAll";
            this.btnSetAll.Size = new System.Drawing.Size(520, 23);
            this.btnSetAll.TabIndex = 21;
            this.btnSetAll.Text = "应用到所有";
            this.btnSetAll.UseVisualStyleBackColor = true;
            this.btnSetAll.Click += new System.EventHandler(this.btnSetAll_Click);
            // 
            // gbChartSet
            // 
            this.gbChartSet.Controls.Add(this.cobPercentDec);
            this.gbChartSet.Controls.Add(this.cobNumberDec);
            this.gbChartSet.Controls.Add(this.chkDec);
            this.gbChartSet.Controls.Add(this.cboChartShow);
            this.gbChartSet.Controls.Add(this.cboShowType);
            this.gbChartSet.Controls.Add(this.btnChartColor);
            this.gbChartSet.Controls.Add(this.chk3DShow);
            this.gbChartSet.Controls.Add(this.cboChartRate);
            this.gbChartSet.Controls.Add(this.chkCharRate);
            this.gbChartSet.Controls.Add(this.chkChartShow);
            this.gbChartSet.Controls.Add(this.cboChartLabel);
            this.gbChartSet.Controls.Add(this.chkLableType);
            this.gbChartSet.Controls.Add(this.cboChartType);
            this.gbChartSet.Controls.Add(this.chkChartType);
            this.gbChartSet.Location = new System.Drawing.Point(271, 7);
            this.gbChartSet.Name = "gbChartSet";
            this.gbChartSet.Size = new System.Drawing.Size(261, 238);
            this.gbChartSet.TabIndex = 19;
            this.gbChartSet.TabStop = false;
            this.gbChartSet.Text = "图表参数设置";
            // 
            // cobPercentDec
            // 
            this.cobPercentDec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cobPercentDec.Enabled = false;
            this.cobPercentDec.FormattingEnabled = true;
            this.cobPercentDec.Items.AddRange(new object[] {
            "0",
            "1",
            "2",
            "3",
            "4"});
            this.cobPercentDec.Location = new System.Drawing.Point(200, 82);
            this.cobPercentDec.Name = "cobPercentDec";
            this.cobPercentDec.Size = new System.Drawing.Size(55, 20);
            this.cobPercentDec.TabIndex = 32;
            this.cobPercentDec.SelectedIndexChanged += new System.EventHandler(this.cobPercentDec_SelectedIndexChanged);
            // 
            // cobNumberDec
            // 
            this.cobNumberDec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cobNumberDec.Enabled = false;
            this.cobNumberDec.FormattingEnabled = true;
            this.cobNumberDec.Items.AddRange(new object[] {
            "0",
            "1",
            "2",
            "3",
            "4"});
            this.cobNumberDec.Location = new System.Drawing.Point(138, 82);
            this.cobNumberDec.Name = "cobNumberDec";
            this.cobNumberDec.Size = new System.Drawing.Size(55, 20);
            this.cobNumberDec.TabIndex = 30;
            this.cobNumberDec.SelectedIndexChanged += new System.EventHandler(this.cobNumberDec_SelectedIndexChanged);
            // 
            // chkDec
            // 
            this.chkDec.AutoSize = true;
            this.chkDec.Location = new System.Drawing.Point(15, 82);
            this.chkDec.Name = "chkDec";
            this.chkDec.Size = new System.Drawing.Size(84, 16);
            this.chkDec.TabIndex = 31;
            this.chkDec.Text = "小数位数:";
            this.chkDec.UseVisualStyleBackColor = true;
            this.chkDec.CheckedChanged += new System.EventHandler(this.chkDec_CheckedChanged);
            // 
            // cboChartShow
            // 
            this.cboChartShow.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboChartShow.Enabled = false;
            this.cboChartShow.FormattingEnabled = true;
            this.cboChartShow.Items.AddRange(new object[] {
            "停止时显示",
            "开始时显示",
            "手动显示"});
            this.cboChartShow.Location = new System.Drawing.Point(138, 113);
            this.cboChartShow.Name = "cboChartShow";
            this.cboChartShow.Size = new System.Drawing.Size(117, 20);
            this.cboChartShow.TabIndex = 29;
            // 
            // cboShowType
            // 
            this.cboShowType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboShowType.Enabled = false;
            this.cboShowType.FormattingEnabled = true;
            this.cboShowType.Items.AddRange(new object[] {
            "2D显示",
            "3D显示"});
            this.cboShowType.Location = new System.Drawing.Point(138, 175);
            this.cboShowType.Name = "cboShowType";
            this.cboShowType.Size = new System.Drawing.Size(117, 20);
            this.cboShowType.TabIndex = 28;
            // 
            // btnChartColor
            // 
            this.btnChartColor.AutoSize = true;
            this.btnChartColor.Location = new System.Drawing.Point(15, 203);
            this.btnChartColor.Name = "btnChartColor";
            this.btnChartColor.Size = new System.Drawing.Size(240, 24);
            this.btnChartColor.TabIndex = 20;
            this.btnChartColor.Text = "图表选项颜色设置";
            this.btnChartColor.UseVisualStyleBackColor = true;
            this.btnChartColor.Click += new System.EventHandler(this.btnChartColor_Click);
            // 
            // chk3DShow
            // 
            this.chk3DShow.AutoSize = true;
            this.chk3DShow.Location = new System.Drawing.Point(15, 175);
            this.chk3DShow.Name = "chk3DShow";
            this.chk3DShow.Size = new System.Drawing.Size(84, 16);
            this.chk3DShow.TabIndex = 27;
            this.chk3DShow.Text = "显示方式:";
            this.chk3DShow.UseVisualStyleBackColor = true;
            this.chk3DShow.CheckedChanged += new System.EventHandler(this.chk3DShow_CheckedChanged);
            // 
            // cboChartRate
            // 
            this.cboChartRate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboChartRate.Enabled = false;
            this.cboChartRate.FormattingEnabled = true;
            this.cboChartRate.Items.AddRange(new object[] {
            "按参与人数",
            "按提交人数"});
            this.cboChartRate.Location = new System.Drawing.Point(138, 144);
            this.cboChartRate.Name = "cboChartRate";
            this.cboChartRate.Size = new System.Drawing.Size(117, 20);
            this.cboChartRate.TabIndex = 20;
            // 
            // chkCharRate
            // 
            this.chkCharRate.AutoSize = true;
            this.chkCharRate.Location = new System.Drawing.Point(15, 143);
            this.chkCharRate.Name = "chkCharRate";
            this.chkCharRate.Size = new System.Drawing.Size(84, 16);
            this.chkCharRate.TabIndex = 26;
            this.chkCharRate.Text = "比率统计:";
            this.chkCharRate.UseVisualStyleBackColor = true;
            this.chkCharRate.CheckedChanged += new System.EventHandler(this.chkCharRate_CheckedChanged);
            // 
            // chkChartShow
            // 
            this.chkChartShow.AutoSize = true;
            this.chkChartShow.Location = new System.Drawing.Point(15, 107);
            this.chkChartShow.Name = "chkChartShow";
            this.chkChartShow.Size = new System.Drawing.Size(84, 16);
            this.chkChartShow.TabIndex = 25;
            this.chkChartShow.Text = "显示时机:";
            this.chkChartShow.UseVisualStyleBackColor = true;
            this.chkChartShow.CheckedChanged += new System.EventHandler(this.chkChartShow_CheckedChanged);
            // 
            // cboChartLabel
            // 
            this.cboChartLabel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboChartLabel.Enabled = false;
            this.cboChartLabel.FormattingEnabled = true;
            this.cboChartLabel.Items.AddRange(new object[] {
            "#",
            "0.0%",
            "# + 0.0%",
            "不显示"});
            this.cboChartLabel.Location = new System.Drawing.Point(138, 50);
            this.cboChartLabel.Name = "cboChartLabel";
            this.cboChartLabel.Size = new System.Drawing.Size(117, 20);
            this.cboChartLabel.TabIndex = 15;
            // 
            // chkLableType
            // 
            this.chkLableType.AutoSize = true;
            this.chkLableType.Location = new System.Drawing.Point(15, 50);
            this.chkLableType.Name = "chkLableType";
            this.chkLableType.Size = new System.Drawing.Size(84, 16);
            this.chkLableType.TabIndex = 24;
            this.chkLableType.Text = "标签样式:";
            this.chkLableType.UseVisualStyleBackColor = true;
            this.chkLableType.CheckedChanged += new System.EventHandler(this.chkLableType_CheckedChanged);
            // 
            // cboChartType
            // 
            this.cboChartType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboChartType.Enabled = false;
            this.cboChartType.FormattingEnabled = true;
            this.cboChartType.Items.AddRange(new object[] {
            "垂直柱状图",
            "水平柱状图",
            "垂直方块图",
            "水平方块图",
            "饼图"});
            this.cboChartType.Location = new System.Drawing.Point(138, 19);
            this.cboChartType.Name = "cboChartType";
            this.cboChartType.Size = new System.Drawing.Size(117, 20);
            this.cboChartType.TabIndex = 14;
            // 
            // chkChartType
            // 
            this.chkChartType.AutoSize = true;
            this.chkChartType.Location = new System.Drawing.Point(15, 19);
            this.chkChartType.Name = "chkChartType";
            this.chkChartType.Size = new System.Drawing.Size(84, 16);
            this.chkChartType.TabIndex = 23;
            this.chkChartType.Text = "图表样式:";
            this.chkChartType.UseVisualStyleBackColor = true;
            this.chkChartType.CheckedChanged += new System.EventHandler(this.chkChartType_CheckedChanged);
            // 
            // gbKeySet
            // 
            this.gbKeySet.Controls.Add(this.cboOptionMode);
            this.gbKeySet.Controls.Add(this.cboModifyMode);
            this.gbKeySet.Controls.Add(this.chkOptionMode);
            this.gbKeySet.Controls.Add(this.chkModifyMode);
            this.gbKeySet.Location = new System.Drawing.Point(12, 89);
            this.gbKeySet.Name = "gbKeySet";
            this.gbKeySet.Size = new System.Drawing.Size(253, 156);
            this.gbKeySet.TabIndex = 18;
            this.gbKeySet.TabStop = false;
            this.gbKeySet.Text = "键盘参数设置";
            // 
            // cboOptionMode
            // 
            this.cboOptionMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboOptionMode.Enabled = false;
            this.cboOptionMode.FormattingEnabled = true;
            this.cboOptionMode.Items.AddRange(new object[] {
            "1234",
            "ABCD"});
            this.cboOptionMode.Location = new System.Drawing.Point(129, 54);
            this.cboOptionMode.Name = "cboOptionMode";
            this.cboOptionMode.Size = new System.Drawing.Size(117, 20);
            this.cboOptionMode.TabIndex = 25;
            // 
            // cboModifyMode
            // 
            this.cboModifyMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboModifyMode.Enabled = false;
            this.cboModifyMode.FormattingEnabled = true;
            this.cboModifyMode.Items.AddRange(new object[] {
            "允许修改",
            "不允许修改"});
            this.cboModifyMode.Location = new System.Drawing.Point(129, 24);
            this.cboModifyMode.Name = "cboModifyMode";
            this.cboModifyMode.Size = new System.Drawing.Size(117, 20);
            this.cboModifyMode.TabIndex = 27;
            // 
            // chkOptionMode
            // 
            this.chkOptionMode.AutoSize = true;
            this.chkOptionMode.Location = new System.Drawing.Point(6, 56);
            this.chkOptionMode.Name = "chkOptionMode";
            this.chkOptionMode.Size = new System.Drawing.Size(84, 16);
            this.chkOptionMode.TabIndex = 30;
            this.chkOptionMode.Text = "选项格式:";
            this.chkOptionMode.UseVisualStyleBackColor = true;
            this.chkOptionMode.CheckedChanged += new System.EventHandler(this.chkOptionMode_CheckedChanged);
            // 
            // chkModifyMode
            // 
            this.chkModifyMode.AutoSize = true;
            this.chkModifyMode.Location = new System.Drawing.Point(6, 26);
            this.chkModifyMode.Name = "chkModifyMode";
            this.chkModifyMode.Size = new System.Drawing.Size(84, 16);
            this.chkModifyMode.TabIndex = 29;
            this.chkModifyMode.Text = "修改模式:";
            this.chkModifyMode.UseVisualStyleBackColor = true;
            this.chkModifyMode.CheckedChanged += new System.EventHandler(this.chkModifyMode_CheckedChanged);
            // 
            // grbVoteSet
            // 
            this.grbVoteSet.Controls.Add(this.cboNameMode);
            this.grbVoteSet.Controls.Add(this.chkNameMode);
            this.grbVoteSet.Location = new System.Drawing.Point(12, 6);
            this.grbVoteSet.Name = "grbVoteSet";
            this.grbVoteSet.Size = new System.Drawing.Size(253, 77);
            this.grbVoteSet.TabIndex = 17;
            this.grbVoteSet.TabStop = false;
            this.grbVoteSet.Text = "投票参数设置";
            // 
            // cboNameMode
            // 
            this.cboNameMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboNameMode.Enabled = false;
            this.cboNameMode.FormattingEnabled = true;
            this.cboNameMode.Items.AddRange(new object[] {
            "记名",
            "不记名"});
            this.cboNameMode.Location = new System.Drawing.Point(129, 20);
            this.cboNameMode.Name = "cboNameMode";
            this.cboNameMode.Size = new System.Drawing.Size(117, 20);
            this.cboNameMode.TabIndex = 18;
            // 
            // chkNameMode
            // 
            this.chkNameMode.AutoSize = true;
            this.chkNameMode.Location = new System.Drawing.Point(6, 22);
            this.chkNameMode.Name = "chkNameMode";
            this.chkNameMode.Size = new System.Drawing.Size(84, 16);
            this.chkNameMode.TabIndex = 17;
            this.chkNameMode.Text = "记名方式:";
            this.chkNameMode.UseVisualStyleBackColor = true;
            this.chkNameMode.CheckedChanged += new System.EventHandler(this.chkNameMode_CheckedChanged);
            // 
            // tabEmailSet
            // 
            this.tabEmailSet.Controls.Add(this.gbxEmailReport);
            this.tabEmailSet.Controls.Add(this.gbxEmailIn);
            this.tabEmailSet.Controls.Add(this.grpEmailOut);
            this.tabEmailSet.Location = new System.Drawing.Point(4, 22);
            this.tabEmailSet.Name = "tabEmailSet";
            this.tabEmailSet.Padding = new System.Windows.Forms.Padding(3);
            this.tabEmailSet.Size = new System.Drawing.Size(574, 484);
            this.tabEmailSet.TabIndex = 4;
            this.tabEmailSet.Text = "报表发邮件设置";
            this.tabEmailSet.UseVisualStyleBackColor = true;
            // 
            // gbxEmailReport
            // 
            this.gbxEmailReport.Controls.Add(this.chkEmailReport);
            this.gbxEmailReport.Location = new System.Drawing.Point(13, 232);
            this.gbxEmailReport.Name = "gbxEmailReport";
            this.gbxEmailReport.Size = new System.Drawing.Size(548, 95);
            this.gbxEmailReport.TabIndex = 0;
            this.gbxEmailReport.TabStop = false;
            this.gbxEmailReport.Text = "请选择需要发送邮件的报表";
            // 
            // chkEmailReport
            // 
            this.chkEmailReport.CheckOnClick = true;
            this.chkEmailReport.FormattingEnabled = true;
            this.chkEmailReport.Items.AddRange(new object[] {
            "报表1",
            "报表2",
            "报表3"});
            this.chkEmailReport.Location = new System.Drawing.Point(18, 25);
            this.chkEmailReport.Name = "chkEmailReport";
            this.chkEmailReport.Size = new System.Drawing.Size(514, 52);
            this.chkEmailReport.TabIndex = 0;
            // 
            // gbxEmailIn
            // 
            this.gbxEmailIn.Controls.Add(this.txtEmailInAdds);
            this.gbxEmailIn.Controls.Add(this.labEmailInAdds);
            this.gbxEmailIn.Location = new System.Drawing.Point(13, 119);
            this.gbxEmailIn.Name = "gbxEmailIn";
            this.gbxEmailIn.Size = new System.Drawing.Size(548, 107);
            this.gbxEmailIn.TabIndex = 0;
            this.gbxEmailIn.TabStop = false;
            this.gbxEmailIn.Text = "收信邮箱设置";
            // 
            // txtEmailInAdds
            // 
            this.txtEmailInAdds.Location = new System.Drawing.Point(18, 45);
            this.txtEmailInAdds.Multiline = true;
            this.txtEmailInAdds.Name = "txtEmailInAdds";
            this.txtEmailInAdds.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtEmailInAdds.Size = new System.Drawing.Size(514, 49);
            this.txtEmailInAdds.TabIndex = 1;
            this.txtEmailInAdds.Text = "sadfdsafsdaf\r\nasdfadsfas";
            // 
            // labEmailInAdds
            // 
            this.labEmailInAdds.ForeColor = System.Drawing.SystemColors.ControlText;
            this.labEmailInAdds.Location = new System.Drawing.Point(16, 17);
            this.labEmailInAdds.Name = "labEmailInAdds";
            this.labEmailInAdds.Size = new System.Drawing.Size(475, 27);
            this.labEmailInAdds.TabIndex = 0;
            this.labEmailInAdds.Text = "关闭PPT时自动发邮件的邮箱地址(多个地址间用\";\"隔开):";
            this.labEmailInAdds.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // grpEmailOut
            // 
            this.grpEmailOut.Controls.Add(this.txtEmailOut);
            this.grpEmailOut.Controls.Add(this.labEmailOut);
            this.grpEmailOut.Controls.Add(this.txtPort);
            this.grpEmailOut.Controls.Add(this.txtPWD);
            this.grpEmailOut.Controls.Add(this.txtServer);
            this.grpEmailOut.Controls.Add(this.labEmailPort);
            this.grpEmailOut.Controls.Add(this.labEmailServer);
            this.grpEmailOut.Controls.Add(this.labEmailPWD);
            this.grpEmailOut.Location = new System.Drawing.Point(13, 14);
            this.grpEmailOut.Name = "grpEmailOut";
            this.grpEmailOut.Size = new System.Drawing.Size(548, 99);
            this.grpEmailOut.TabIndex = 0;
            this.grpEmailOut.TabStop = false;
            this.grpEmailOut.Text = "发信邮箱设置";
            // 
            // txtEmailOut
            // 
            this.txtEmailOut.Location = new System.Drawing.Point(18, 50);
            this.txtEmailOut.Name = "txtEmailOut";
            this.txtEmailOut.Size = new System.Drawing.Size(514, 21);
            this.txtEmailOut.TabIndex = 0;
            // 
            // labEmailOut
            // 
            this.labEmailOut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.labEmailOut.Location = new System.Drawing.Point(16, 19);
            this.labEmailOut.Name = "labEmailOut";
            this.labEmailOut.Size = new System.Drawing.Size(526, 30);
            this.labEmailOut.TabIndex = 1;
            this.labEmailOut.Text = "邮箱地址(请先在Outlook设置好发件箱账户,并用Outlook测试通过)";
            this.labEmailOut.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // txtPort
            // 
            this.txtPort.Location = new System.Drawing.Point(269, 86);
            this.txtPort.Name = "txtPort";
            this.txtPort.Size = new System.Drawing.Size(222, 21);
            this.txtPort.TabIndex = 0;
            this.txtPort.Visible = false;
            // 
            // txtPWD
            // 
            this.txtPWD.Location = new System.Drawing.Point(269, 32);
            this.txtPWD.Name = "txtPWD";
            this.txtPWD.PasswordChar = '*';
            this.txtPWD.Size = new System.Drawing.Size(222, 21);
            this.txtPWD.TabIndex = 0;
            this.txtPWD.Visible = false;
            // 
            // txtServer
            // 
            this.txtServer.Location = new System.Drawing.Point(18, 86);
            this.txtServer.Name = "txtServer";
            this.txtServer.Size = new System.Drawing.Size(222, 21);
            this.txtServer.TabIndex = 0;
            this.txtServer.Visible = false;
            // 
            // labEmailPort
            // 
            this.labEmailPort.AutoSize = true;
            this.labEmailPort.Location = new System.Drawing.Point(267, 71);
            this.labEmailPort.Name = "labEmailPort";
            this.labEmailPort.Size = new System.Drawing.Size(89, 12);
            this.labEmailPort.TabIndex = 1;
            this.labEmailPort.Text = "端口(可不填)";
            this.labEmailPort.Visible = false;
            // 
            // labEmailServer
            // 
            this.labEmailServer.AutoSize = true;
            this.labEmailServer.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.labEmailServer.Location = new System.Drawing.Point(16, 71);
            this.labEmailServer.Name = "labEmailServer";
            this.labEmailServer.Size = new System.Drawing.Size(65, 12);
            this.labEmailServer.TabIndex = 1;
            this.labEmailServer.Text = "发件服务器";
            this.labEmailServer.Visible = false;
            // 
            // labEmailPWD
            // 
            this.labEmailPWD.AutoSize = true;
            this.labEmailPWD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.labEmailPWD.Location = new System.Drawing.Point(267, 17);
            this.labEmailPWD.Name = "labEmailPWD";
            this.labEmailPWD.Size = new System.Drawing.Size(53, 12);
            this.labEmailPWD.TabIndex = 1;
            this.labEmailPWD.Text = "邮箱密码";
            this.labEmailPWD.Visible = false;
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.FileName = "openDialog";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(369, 4);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(103, 30);
            this.button1.TabIndex = 18;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Visible = false;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // FrmSystemSet
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(607, 563);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.tctlSystemSet);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnOK);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmSystemSet";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "系统设置";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmSystemSet_FormClosed);
            this.Load += new System.EventHandler(this.FrmSystemSet_Load);
            this.tctlSystemSet.ResumeLayout(false);
            this.tpgOprate.ResumeLayout(false);
            this.gbxVoteStatus.ResumeLayout(false);
            this.gbxVoteStatus.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picSBarStop)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picSBarVoting)).EndInit();
            this.grpSet.ResumeLayout(false);
            this.grpSet.PerformLayout();
            this.gbxRemoteControl.ResumeLayout(false);
            this.gbxRemoteControl.PerformLayout();
            this.gbxAutoPage.ResumeLayout(false);
            this.gbxAutoPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numDelayTime)).EndInit();
            this.gbxAutoVote.ResumeLayout(false);
            this.gbxAutoVote.PerformLayout();
            this.gbDemo.ResumeLayout(false);
            this.gbDemo.PerformLayout();
            this.gpToolBar.ResumeLayout(false);
            this.gpToolBar.PerformLayout();
            this.tpgSystemSet.ResumeLayout(false);
            this.gbAddinType.ResumeLayout(false);
            this.gbAddinType.PerformLayout();
            this.gbxLanguage.ResumeLayout(false);
            this.gbxLanguage.PerformLayout();
            this.tpgSoundSet.ResumeLayout(false);
            this.tpgSoundSet.PerformLayout();
            this.tpgSetAll.ResumeLayout(false);
            this.tpgSetAll.PerformLayout();
            this.gbxInsertSlideObject.ResumeLayout(false);
            this.gbxInsertSlideObject.PerformLayout();
            this.grbColorCW.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picColorWrong)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picColorCorrect)).EndInit();
            this.gbChartSet.ResumeLayout(false);
            this.gbChartSet.PerformLayout();
            this.gbKeySet.ResumeLayout(false);
            this.gbKeySet.PerformLayout();
            this.grbVoteSet.ResumeLayout(false);
            this.grbVoteSet.PerformLayout();
            this.tabEmailSet.ResumeLayout(false);
            this.gbxEmailReport.ResumeLayout(false);
            this.gbxEmailIn.ResumeLayout(false);
            this.gbxEmailIn.PerformLayout();
            this.grpEmailOut.ResumeLayout(false);
            this.grpEmailOut.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button btnOK;
        private System.Windows.Forms.Button btnCancel;
        private System.Windows.Forms.TabControl tctlSystemSet;
        private System.Windows.Forms.TabPage tpgSystemSet;
        private System.Windows.Forms.GroupBox gbxLanguage;
        private System.Windows.Forms.ComboBox cboLanguage;
        private System.Windows.Forms.TabPage tpgSoundSet;
        private System.Windows.Forms.Button btnSoundStop;
        private System.Windows.Forms.Button btnSoundPlay;
        private System.Windows.Forms.Button btnSoundBrowse;
        private System.Windows.Forms.ListView lvwSound;
        private System.Windows.Forms.ColumnHeader columnHeader1;
        private System.Windows.Forms.ColumnHeader columnHeader5;
        private System.Windows.Forms.OpenFileDialog openFileDialog1;
        private System.Windows.Forms.TabPage tpgOprate;
        private System.Windows.Forms.GroupBox gbxRemoteControl;
        private System.Windows.Forms.CheckBox chkRemoteControlEnabled;
        private System.Windows.Forms.GroupBox gbxAutoPage;
        private System.Windows.Forms.CheckBox chkAllVoted;
        private System.Windows.Forms.CheckBox chkTimeOut;
        private System.Windows.Forms.GroupBox gbDemo;
        private System.Windows.Forms.CheckBox chkDemo;
        private System.Windows.Forms.GroupBox gbAddinType;
        private System.Windows.Forms.RadioButton rbShotcut;
        private System.Windows.Forms.RadioButton rbAuto;
        private System.Windows.Forms.TabPage tpgSetAll;
        private System.Windows.Forms.GroupBox grbVoteSet;
        private System.Windows.Forms.ComboBox cboNameMode;
        private System.Windows.Forms.CheckBox chkNameMode;
        private System.Windows.Forms.GroupBox gbKeySet;
        public System.Windows.Forms.ComboBox cboOptionMode;
        public System.Windows.Forms.ComboBox cboModifyMode;
        private System.Windows.Forms.CheckBox chkOptionMode;
        private System.Windows.Forms.CheckBox chkModifyMode;
        private System.Windows.Forms.GroupBox gbChartSet;
        private System.Windows.Forms.CheckBox chkLableType;
        public System.Windows.Forms.ComboBox cboChartRate;
        public System.Windows.Forms.ComboBox cboChartLabel;
        public System.Windows.Forms.ComboBox cboChartType;
        private System.Windows.Forms.CheckBox chkChartType;
        private System.Windows.Forms.CheckBox chkCharRate;
        private System.Windows.Forms.CheckBox chkChartShow;
        private System.Windows.Forms.Button btnChartColor;
        private System.Windows.Forms.ComboBox cboShowType;
        private System.Windows.Forms.CheckBox chk3DShow;
        public System.Windows.Forms.ComboBox cboChartShow;
        private System.Windows.Forms.Button btnSetAll;
        private System.Windows.Forms.Label lblInfo;
        private System.Windows.Forms.GroupBox grpSet;
        private System.Windows.Forms.Label lblCharRate;
        private System.Windows.Forms.Label lblOptionMode;
        private System.Windows.Forms.Label lblModifyMode;
        public System.Windows.Forms.ComboBox cboChartRateOpt;
        public System.Windows.Forms.ComboBox cboOptionModeOpt;
        public System.Windows.Forms.ComboBox cboModifyModeOpt;
        private System.Windows.Forms.Button btnChartColorOpt;
        private System.Windows.Forms.Label lblChartShow;
        public System.Windows.Forms.ComboBox cboChartShowOpt;
        private System.Windows.Forms.GroupBox gpToolBar;
        private System.Windows.Forms.CheckBox chkToolBar;
        public System.Windows.Forms.ComboBox cobPercentDec;
        public System.Windows.Forms.ComboBox cobNumberDec;
        private System.Windows.Forms.CheckBox chkDec;
        private System.Windows.Forms.GroupBox gbxAutoVote;
        private System.Windows.Forms.CheckBox chkAutoVote;
        private System.Windows.Forms.NumericUpDown numDelayTime;
        private System.Windows.Forms.Label lblDelayTime;
        private System.Windows.Forms.TabPage tabEmailSet;
        private System.Windows.Forms.GroupBox gbxEmailIn;
        private System.Windows.Forms.GroupBox grpEmailOut;
        private System.Windows.Forms.Label labEmailPort;
        private System.Windows.Forms.Label labEmailPWD;
        private System.Windows.Forms.Label labEmailServer;
        private System.Windows.Forms.Label labEmailOut;
        private System.Windows.Forms.TextBox txtPort;
        private System.Windows.Forms.TextBox txtPWD;
        private System.Windows.Forms.TextBox txtServer;
        private System.Windows.Forms.TextBox txtEmailOut;
        private System.Windows.Forms.TextBox txtEmailInAdds;
        private System.Windows.Forms.Label labEmailInAdds;
        private System.Windows.Forms.GroupBox gbxEmailReport;
        private System.Windows.Forms.CheckedListBox chkEmailReport;
        private System.Windows.Forms.GroupBox gbxVoteStatus;
        private System.Windows.Forms.CheckBox chkShowVoteStatus;
        private System.Windows.Forms.ComboBox cboFont;
        private System.Windows.Forms.Label labFont;
        private System.Windows.Forms.Label labLanguage;
        private System.Windows.Forms.GroupBox grbColorCW;
        private System.Windows.Forms.PictureBox picColorWrong;
        private System.Windows.Forms.Label lblColorWrong;
        private System.Windows.Forms.PictureBox picColorCorrect;
        private System.Windows.Forms.Label lblColorCorrect;
        private System.Windows.Forms.CheckBox chkColorCW;
        private System.Windows.Forms.CheckBox chkNotVotedScore;
        private System.Windows.Forms.GroupBox gbxInsertSlideObject;
        private System.Windows.Forms.CheckBox chkInsertVotedCount;
        private System.Windows.Forms.CheckBox chkInsertVoterCount;
        private System.Windows.Forms.CheckBox chkInsertNoVoteCount;
        public System.Windows.Forms.CheckBox chkChartShowWindow;
        private System.Windows.Forms.PictureBox picSBarStop;
        private System.Windows.Forms.Button btnSetPicSBarStop;
        private System.Windows.Forms.PictureBox picSBarVoting;
        private System.Windows.Forms.Button btnSetPicSBarVoting;
        private System.Windows.Forms.Label lblSBarStop;
        private System.Windows.Forms.Label lblSBarVoting;
        private System.Windows.Forms.CheckBox chkRemoteControlEnabledR51;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.CheckBox chkRemoteControlEnabledR52;
        private System.Windows.Forms.CheckBox chkStopShowCorrectAsw;
        private System.Windows.Forms.CheckBox chkRemoteControlEnabledR53;
    }
}