-
Notifications
You must be signed in to change notification settings - Fork 1
/
MainForm.frm
4072 lines (3572 loc) · 132 KB
/
MainForm.frm
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
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{48E59290-9880-11CF-9754-00AA00C00908}#1.0#0"; "MSINET.OCX"
Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
Begin VB.Form MainForm
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 1 'Fixed Single
Caption = "黑白棋.Net"
ClientHeight = 6330
ClientLeft = 150
ClientTop = 435
ClientWidth = 9480
FillStyle = 0 'Solid
ForeColor = &H00000000&
Icon = "MainForm.frx":0000
KeyPreview = -1 'True
LockControls = -1 'True
MaxButton = 0 'False
NegotiateMenus = 0 'False
ScaleHeight = 6330
ScaleWidth = 9480
StartUpPosition = 3 '窗口缺省
Begin Othello.FlatButton fltbtnExit
Height = 240
Left = 9075
TabIndex = 9
Top = 165
Visible = 0 'False
Width = 240
_ExtentX = 423
_ExtentY = 423
MousePointer = 99
Style = 1
Picture = "MainForm.frx":1CFA
OverPicture = "MainForm.frx":1DA0
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ToolTip = "退出游戏"
ForeColor = 0
AutoSize = -1 'True
End
Begin Othello.FlatButton fltbtnMin
Height = 240
Left = 8835
TabIndex = 8
Top = 165
Visible = 0 'False
Width = 240
_ExtentX = 423
_ExtentY = 423
MousePointer = 99
Style = 1
Picture = "MainForm.frx":202D
OverPicture = "MainForm.frx":2093
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ToolTip = "最小化"
ForeColor = 0
AutoSize = -1 'True
End
Begin VB.Timer tmrOK
Enabled = 0 'False
Interval = 1000
Left = 3210
Top = 4590
End
Begin VB.Timer tmrMusic
Enabled = 0 'False
Interval = 5000
Left = 2760
Top = 5040
End
Begin VB.Timer tmrLightFlash
Enabled = 0 'False
Interval = 500
Left = 3660
Top = 4590
End
Begin VB.Frame fraMainButton
BackColor = &H00000000&
BorderStyle = 0 'None
Height = 360
Left = 525
TabIndex = 24
Top = 5580
Visible = 0 'False
Width = 4545
Begin Othello.FlatButton fltbtnChat
Height = 345
Left = 3735
TabIndex = 25
Top = 0
Width = 795
_ExtentX = 1402
_ExtentY = 609
Caption = ""
MousePointer = 99
Style = 1
Picture = "MainForm.frx":2244
DownPicture = "MainForm.frx":2847
OverPicture = "MainForm.frx":2E4C
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ToolTip = "显示/隐藏聊天窗口"
ForeColor = 0
AutoSize = -1 'True
End
Begin Othello.FlatButton fltbtnTable
Height = 345
Left = 2580
TabIndex = 26
Top = 0
Width = 795
_ExtentX = 1402
_ExtentY = 609
Caption = ""
MousePointer = 99
Style = 1
Picture = "MainForm.frx":3400
DownPicture = "MainForm.frx":3A16
OverPicture = "MainForm.frx":4037
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ToolTip = "显示/隐藏棋局列表窗口"
ForeColor = 0
AutoSize = -1 'True
End
Begin Othello.FlatButton fltbtnOnline
Height = 345
Left = 1440
TabIndex = 27
Top = 0
Width = 795
_ExtentX = 1402
_ExtentY = 609
Caption = ""
MousePointer = 99
Style = 1
Picture = "MainForm.frx":45F8
DownPicture = "MainForm.frx":4BCE
OverPicture = "MainForm.frx":51AB
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ToolTip = "显示/隐藏在线用户窗口"
ForeColor = 0
AutoSize = -1 'True
End
Begin Othello.FlatButton fltbtnMenu
Height = 345
Left = 0
TabIndex = 28
Top = 0
Width = 1005
_ExtentX = 1773
_ExtentY = 609
Caption = ""
MousePointer = 99
Style = 1
Picture = "MainForm.frx":5597
DownPicture = "MainForm.frx":5C0A
OverPicture = "MainForm.frx":627D
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ToolTip = "游戏主菜单"
ForeColor = 0
AutoSize = -1 'True
End
End
Begin VB.Timer tmrFaceFlash
Enabled = 0 'False
Interval = 500
Left = 4110
Top = 4590
End
Begin VB.Frame fraStatus
BackColor = &H00000000&
BorderStyle = 0 'None
ForeColor = &H00E0E0E0&
Height = 1635
Left = 5715
TabIndex = 10
Top = 4275
Visible = 0 'False
Width = 3285
Begin VB.Label lblTime1
AutoSize = -1 'True
BackStyle = 0 'Transparent
BeginProperty Font
Name = "Times New Roman"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 360
Left = 2355
TabIndex = 33
Top = 840
Width = 75
End
Begin VB.Image imgLight
Enabled = 0 'False
Height = 300
Index = 3
Left = 0
Top = 1245
Width = 300
End
Begin VB.Image imgLight
Enabled = 0 'False
Height = 300
Index = 2
Left = 0
Top = 600
Width = 300
End
Begin VB.Image imgLight
Enabled = 0 'False
Height = 300
Index = 1
Left = 0
Top = 300
Width = 300
End
Begin VB.Image imgLight
Enabled = 0 'False
Height = 300
Index = 0
Left = 0
Top = 0
Width = 300
End
Begin VB.Label lblTips
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "请登陆或立即注册。"
ForeColor = &H00E0E0E0&
Height = 180
Left = 945
TabIndex = 20
Top = 1305
Width = 1620
End
Begin VB.Label lblTime
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "--:--"
ForeColor = &H00E0E0E0&
Height = 180
Left = 945
TabIndex = 19
Top = 990
Width = 450
End
Begin VB.Label lblTable
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "无棋局"
ForeColor = &H00E0E0E0&
Height = 180
Left = 945
TabIndex = 18
Top = 675
Width = 540
End
Begin VB.Label lblConnect
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "无连接"
ForeColor = &H00E0E0E0&
Height = 180
Left = 945
TabIndex = 17
Top = 375
Width = 540
End
Begin VB.Label lblLogin
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "未登录"
ForeColor = &H00E0E0E0&
Height = 180
Left = 945
TabIndex = 16
Top = 75
Width = 540
End
Begin VB.Label Label1
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "登录:"
ForeColor = &H00E0E0E0&
Height = 225
Left = 405
TabIndex = 15
Top = 75
Width = 450
End
Begin VB.Label Label2
BackColor = &H00000000&
Caption = "棋局:"
ForeColor = &H00E0E0E0&
Height = 225
Left = 405
TabIndex = 14
Top = 675
Width = 450
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "连接:"
ForeColor = &H00E0E0E0&
Height = 225
Left = 405
TabIndex = 13
Top = 375
Width = 450
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "提示:"
ForeColor = &H00E0E0E0&
Height = 225
Left = 405
TabIndex = 12
Top = 1305
Width = 450
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "时间:"
ForeColor = &H00E0E0E0&
Height = 225
Left = 405
TabIndex = 11
Top = 990
Width = 450
End
End
Begin MSComctlLib.ImageList ilsMenu
Left = 2130
Top = 4440
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 16711935
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 23
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":66FD
Key = ""
Object.Tag = "注册向导(&R)..."
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":67F9
Key = ""
Object.Tag = "登录(&L)..."
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6891
Key = ""
Object.Tag = "注销(&T)"
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6935
Key = ""
Object.Tag = "马上玩游戏(&P)"
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":69CD
Key = ""
Object.Tag = "公共聊天区(&U)"
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6A69
Key = ""
Object.Tag = "棋局(&B)"
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6BF1
Key = ""
Object.Tag = "查看资料(&V)"
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6C7D
Key = ""
Object.Tag = "修改资料(&I)"
EndProperty
BeginProperty ListImage9 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6D01
Key = ""
Object.Tag = "音乐(&M)"
EndProperty
BeginProperty ListImage10 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6D9D
Key = ""
Object.Tag = "播放(&P)"
EndProperty
BeginProperty ListImage11 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6DF5
Key = ""
Object.Tag = "停止(&S)"
EndProperty
BeginProperty ListImage12 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6E4D
Key = ""
Object.Tag = "暂停(&A)"
EndProperty
BeginProperty ListImage13 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6EA9
Key = ""
Object.Tag = "上一首(&E)"
EndProperty
BeginProperty ListImage14 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6F09
Key = ""
Object.Tag = "下一首(&L)"
EndProperty
BeginProperty ListImage15 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":6F65
Key = ""
Object.Tag = "设置(&S)..."
EndProperty
BeginProperty ListImage16 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":7029
Key = ""
Object.Tag = "帮助(&H)..."
EndProperty
BeginProperty ListImage17 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":70ED
Key = ""
Object.Tag = "反馈(&F)"
EndProperty
BeginProperty ListImage18 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":716D
Key = ""
Object.Tag = "改进意见(&S)..."
EndProperty
BeginProperty ListImage19 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":71F1
Key = ""
Object.Tag = "&Bug 报告..."
EndProperty
BeginProperty ListImage20 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":7275
Key = ""
Object.Tag = "技术支持(&U)..."
EndProperty
BeginProperty ListImage21 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":72F9
Key = ""
Object.Tag = "幸福家园论坛(&G)"
EndProperty
BeginProperty ListImage22 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":7401
Key = ""
Object.Tag = "关于黑白棋.Net(&A)..."
EndProperty
BeginProperty ListImage23 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MainForm.frx":7489
Key = ""
Object.Tag = "退出(&X)"
EndProperty
EndProperty
End
Begin VB.PictureBox picTitle
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
Enabled = 0 'False
ForeColor = &H00E0E0E0&
Height = 1590
Left = 5580
ScaleHeight = 1590
ScaleWidth = 3285
TabIndex = 1
TabStop = 0 'False
Top = 120
Width = 3285
End
Begin MSWinsockLib.Winsock tcpGame
Left = 4560
Top = 4590
_ExtentX = 741
_ExtentY = 741
_Version = 393216
End
Begin MSWinsockLib.Winsock tcpListen
Left = 5010
Top = 4590
_ExtentX = 741
_ExtentY = 741
_Version = 393216
End
Begin InetCtlsObjects.Inet GameInet
Left = 915
Top = 4440
_ExtentX = 1005
_ExtentY = 1005
_Version = 393216
RequestTimeout = 30
End
Begin VB.Timer tmrGame
Enabled = 0 'False
Interval = 55
Left = 2760
Top = 4590
End
Begin MSComctlLib.ImageList ilsFace
Left = 1530
Top = 4440
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 8421376
_Version = 393216
End
Begin VB.PictureBox MainPicture
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
CausesValidation= 0 'False
ForeColor = &H00E0E0E0&
Height = 2325
Left = 255
ScaleHeight = 2325
ScaleWidth = 2670
TabIndex = 0
Top = 255
Width = 2670
End
Begin VB.Frame fraPlayer
BackColor = &H00000000&
Caption = "黑方"
ForeColor = &H00E0E0E0&
Height = 945
Index = 0
Left = 5610
TabIndex = 2
Top = 1890
Visible = 0 'False
Width = 3345
Begin VB.PictureBox picPlayerFace
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
Enabled = 0 'False
ForeColor = &H00E0E0E0&
Height = 480
Index = 0
Left = 135
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 34
Top = 300
Width = 480
End
Begin Othello.FlatButton fltbtnStart
Height = 300
Index = 0
Left = 2655
TabIndex = 31
Top = 195
Visible = 0 'False
Width = 600
_ExtentX = 1058
_ExtentY = 529
Caption = "开始"
MousePointer = 99
Style = 3
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
HotColor = 0
EnableHot = -1 'True
OverBorderColor = 8779006
DownBorderColor = 13499390
BorderColor = 16777215
OverBackColor = 13499390
DownBackColor = 8779006
BackColor = 14737632
ForeColor = 0
End
Begin Othello.FlatButton fltbtnSitDown
Height = 300
Index = 0
Left = 690
TabIndex = 29
Top = 195
Visible = 0 'False
Width = 1920
_ExtentX = 3387
_ExtentY = 529
Caption = "坐在黑方(&B)"
MousePointer = 99
Style = 3
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
HotColor = 0
EnableHot = -1 'True
OverBorderColor = 13499390
DownBorderColor = 13499390
BorderColor = 16777215
OverBackColor = 13499390
DownBackColor = 8779006
BackColor = 14737632
ForeColor = 0
End
Begin Othello.FlatButton fltbtnReadyStart
Height = 300
Index = 0
Left = 690
TabIndex = 36
Top = 195
Visible = 0 'False
Width = 1920
_ExtentX = 3387
_ExtentY = 529
Caption = "我准备好了!"
MousePointer = 99
Style = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
EnableHot = -1 'True
ForeColor = 0
End
Begin VB.Label lblPlayerName
BackColor = &H00404040&
BackStyle = 0 'Transparent
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 255
Index = 0
Left = 735
TabIndex = 3
Top = 210
UseMnemonic = 0 'False
Visible = 0 'False
Width = 1815
End
Begin VB.Label lblPlayerTips
BackColor = &H00C00000&
BackStyle = 0 'Transparent
ForeColor = &H00FFFFFF&
Height = 195
Index = 0
Left = 735
TabIndex = 22
Top = 615
UseMnemonic = 0 'False
Visible = 0 'False
Width = 2400
End
Begin VB.Label lblChessNum
Alignment = 2 'Center
BackColor = &H00404040&
BackStyle = 0 'Transparent
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 270
Index = 0
Left = 2655
TabIndex = 4
Top = 210
UseMnemonic = 0 'False
Visible = 0 'False
Width = 585
End
Begin VB.Shape shpChessNum
BackColor = &H00E0E0E0&
BackStyle = 1 'Opaque
BorderColor = &H00E0E0E0&
Height = 300
Index = 0
Left = 2655
Shape = 2 'Oval
Top = 195
Visible = 0 'False
Width = 585
End
Begin VB.Shape shpPlayerTips
BackColor = &H00FF8080&
BackStyle = 1 'Opaque
BorderColor = &H00FF8080&
Height = 285
Index = 0
Left = 690
Top = 570
Visible = 0 'False
Width = 2565
End
Begin VB.Shape shpPlayerName
BackColor = &H00E0E0E0&
BackStyle = 1 'Opaque
BorderColor = &H00E0E0E0&
Height = 300
Index = 0
Left = 690
Top = 195
Visible = 0 'False
Width = 1920
End
End
Begin VB.Frame fraPlayer
BackColor = &H00000000&
Caption = "白方"
ForeColor = &H00E0E0E0&
Height = 945
Index = 1
Left = 5610
TabIndex = 5
Top = 3030
Visible = 0 'False
Width = 3345
Begin VB.PictureBox picPlayerFace
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
Enabled = 0 'False
ForeColor = &H00E0E0E0&
Height = 480
Index = 1
Left = 135
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 35
Top = 300
Width = 480
End
Begin Othello.FlatButton fltbtnSitDown
Height = 300
Index = 1
Left = 690
TabIndex = 30
Top = 195
Visible = 0 'False
Width = 1920
_ExtentX = 3387
_ExtentY = 529
Caption = "坐在白方(&W)"
MousePointer = 99
Style = 3
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
HotColor = 0
EnableHot = -1 'True
OverBorderColor = 13499390
DownBorderColor = 13499390
BorderColor = 16777215
OverBackColor = 13499390
DownBackColor = 8779006
BackColor = 14737632
ForeColor = 0
End
Begin Othello.FlatButton fltbtnStart
Height = 300
Index = 1
Left = 2655
TabIndex = 32
Top = 195
Visible = 0 'False
Width = 600
_ExtentX = 1058
_ExtentY = 529
Caption = "开始"
MousePointer = 99
Style = 3
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
HotColor = 0
EnableHot = -1 'True
OverBorderColor = 8779006
DownBorderColor = 13499390
BorderColor = 16777215
OverBackColor = 13499390
DownBackColor = 8779006
BackColor = 14737632
ForeColor = 0
End
Begin Othello.FlatButton fltbtnReadyStart
Height = 300
Index = 1
Left = 690
TabIndex = 37
Top = 195
Visible = 0 'False
Width = 1920
_ExtentX = 3387
_ExtentY = 529
Caption = "我准备好了!"
MousePointer = 99
Style = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
EnableHot = -1 'True
ForeColor = 0
End
Begin VB.Label lblPlayerName
BackColor = &H00404040&
BackStyle = 0 'Transparent
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 255
Index = 1
Left = 735
TabIndex = 6
Top = 225
UseMnemonic = 0 'False
Visible = 0 'False
Width = 1815
End
Begin VB.Label lblPlayerTips
BackColor = &H00C00000&
BackStyle = 0 'Transparent
ForeColor = &H00FFFFFF&
Height = 195
Index = 1
Left = 735
TabIndex = 23
Top = 615
UseMnemonic = 0 'False
Visible = 0 'False
Width = 2400
End
Begin VB.Label lblChessNum
Alignment = 2 'Center
BackColor = &H00404040&
BackStyle = 0 'Transparent
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 270
Index = 1
Left = 2655
TabIndex = 7
Top = 210
UseMnemonic = 0 'False
Visible = 0 'False
Width = 585
End
Begin VB.Shape shpChessNum
BackColor = &H00E0E0E0&
BackStyle = 1 'Opaque
BorderColor = &H00E0E0E0&
Height = 300
Index = 1
Left = 2655
Shape = 2 'Oval
Top = 195
Visible = 0 'False
Width = 585
End
Begin VB.Shape shpPlayerTips
BackColor = &H00FF8080&
BackStyle = 1 'Opaque
BorderColor = &H00FF8080&
Height = 285
Index = 1
Left = 690
Top = 570
Visible = 0 'False
Width = 2565
End
Begin VB.Shape shpPlayerName
BackColor = &H00E0E0E0&
BackStyle = 1 'Opaque
BorderColor = &H00E0E0E0&
Height = 300
Index = 1
Left = 690
Top = 195
Visible = 0 'False
Width = 1920
End
End
Begin VB.Label lblFooter
AutoSize = -1 'True