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
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>
ShiftOS0.0.8Beta1.1
</name>
</assembly>
<members>
<member name="F:ShiftOS.Window.SWP.SynchronousWindowPosition">
<summary>If the calling thread and the thread that owns the window are attached to different input queues,
the system posts the request to the thread that owns the window. This prevents the calling thread from
blocking its execution while other threads process the request.</summary>
<remarks>SWP_ASYNCWINDOWPOS</remarks>
</member><member name="F:ShiftOS.Window.SWP.DeferErase">
<summary>Prevents generation of the WM_SYNCPAINT message.</summary>
<remarks>SWP_DEFERERASE</remarks>
</member><member name="F:ShiftOS.Window.SWP.DrawFrame">
<summary>Draws a frame (defined in the window's class description) around the window.</summary>
<remarks>SWP_DRAWFRAME</remarks>
</member><member name="F:ShiftOS.Window.SWP.FrameChanged">
<summary>Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to
the window, even if the window's size is not being changed. If this flag is not specified, WM_NCCALCSIZE
is sent only when the window's size is being changed.</summary>
<remarks>SWP_FRAMECHANGED</remarks>
</member><member name="F:ShiftOS.Window.SWP.HideWindow">
<summary>Hides the window.</summary>
<remarks>SWP_HIDEWINDOW</remarks>
</member><member name="F:ShiftOS.Window.SWP.DoNotActivate">
<summary>Does not activate the window. If this flag is not set, the window is activated and moved to the
top of either the topmost or non-topmost group (depending on the setting of the hWndInsertAfter
parameter).</summary>
<remarks>SWP_NOACTIVATE</remarks>
</member><member name="F:ShiftOS.Window.SWP.DoNotCopyBits">
<summary>Discards the entire contents of the client area. If this flag is not specified, the valid
contents of the client area are saved and copied back into the client area after the window is sized or
repositioned.</summary>
<remarks>SWP_NOCOPYBITS</remarks>
</member><member name="F:ShiftOS.Window.SWP.IgnoreMove">
<summary>Retains the current position (ignores X and Y parameters).</summary>
<remarks>SWP_NOMOVE</remarks>
</member><member name="F:ShiftOS.Window.SWP.DoNotChangeOwnerZOrder">
<summary>Does not change the owner window's position in the Z order.</summary>
<remarks>SWP_NOOWNERZORDER</remarks>
</member><member name="F:ShiftOS.Window.SWP.DoNotRedraw">
<summary>Does not redraw changes. If this flag is set, no repainting of any kind occurs. This applies to
the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent
window uncovered as a result of the window being moved. When this flag is set, the application must
explicitly invalidate or redraw any parts of the window and parent window that need redrawing.</summary>
<remarks>SWP_NOREDRAW</remarks>
</member><member name="F:ShiftOS.Window.SWP.DoNotReposition">
<summary>Same as the SWP_NOOWNERZORDER flag.</summary>
<remarks>SWP_NOREPOSITION</remarks>
</member><member name="F:ShiftOS.Window.SWP.DoNotSendChangingEvent">
<summary>Prevents the window from receiving the WM_WINDOWPOSCHANGING message.</summary>
<remarks>SWP_NOSENDCHANGING</remarks>
</member><member name="F:ShiftOS.Window.SWP.IgnoreResize">
<summary>Retains the current size (ignores the cx and cy parameters).</summary>
<remarks>SWP_NOSIZE</remarks>
</member><member name="F:ShiftOS.Window.SWP.IgnoreZOrder">
<summary>Retains the current Z order (ignores the hWndInsertAfter parameter).</summary>
<remarks>SWP_NOZORDER</remarks>
</member><member name="F:ShiftOS.Window.SWP.ShowWindow">
<summary>Displays the window.</summary>
<remarks>SWP_SHOWWINDOW</remarks>
</member><member name="F:ShiftOS.Window.RedrawFlags.Invalidate">
<summary>
Invalidates the rectangle or region that you specify in lprcUpdate or hrgnUpdate.
You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_INVALIDATE invalidates the entire window.
</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.InternalPaint">
<summary>Causes the OS to post a WM_PAINT message to the window regardless of whether a portion of the window is invalid.</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.Erase">
<summary>
Causes the window to receive a WM_ERASEBKGND message when the window is repainted.
Specify this value in combination with the RDW_INVALIDATE value; otherwise, RDW_ERASE has no effect.
</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.Validate">
<summary>
Validates the rectangle or region that you specify in lprcUpdate or hrgnUpdate.
You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_VALIDATE validates the entire window.
This value does not affect internal WM_PAINT messages.
</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.NoErase">
<summary>Suppresses any pending WM_ERASEBKGND messages.</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.NoChildren">
<summary>Excludes child windows, if any, from the repainting operation.</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.AllChildren">
<summary>Includes child windows, if any, in the repainting operation.</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.UpdateNow">
<summary>Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND and WM_PAINT messages before the RedrawWindow returns, if necessary.</summary>
</member><member name="F:ShiftOS.Window.RedrawFlags.EraseNow">
<summary>
Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND messages before RedrawWindow returns, if necessary.
The affected windows receive WM_PAINT messages at the ordinary time.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources._3beepvirus">
<summary>
Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeaudioplayerbox">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeaudioplayerprice">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeaudioplayerpricepressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapecalculator">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapecalculatorprice">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapecalculatorpricepressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapedepositnowbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapedownloadbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfoaudioplayertext">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfoaudioplayervisualpreview">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfobackbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfobutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfobuttonpressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfobuybutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfocalculatortext">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfocalculatorvisualpreview">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfovideoplayertext">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfovideoplayervisualpreview">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfowebbrowsertext">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeinfowebbrowservisualpreview">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapemoresoftware">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapetitlebanner">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeundefinedprice">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapeundefinedpricepressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapevideoplayer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapevideoplayerprice">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapevideoplayerpricepressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapewebbrowser">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapewebbrowserprice">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapewebbrowserpricepressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.appscapewelcometoappscape">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadcirclerubber">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadcirclerubberselected">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPaderacer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadfloodfill">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadlinetool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadmagnify">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadnew">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadopen">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadOval">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadpaintbrush">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadpencil">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadpixelplacer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadpixelsetter">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadRectangle">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadredo">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadsave">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadsquarerubber">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadsquarerubberselected">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadtexttool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ArtPadundo">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.centrebutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.centrebuttonpressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.deletefile">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.deletefolder">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.dial_up_modem_02">
<summary>
Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.downarrow">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconArtpad">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconAudioPlayer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconBitnoteDigger">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconBitnoteWallet">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconCalculator">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconClock">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconColourPicker">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconDownloader">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconFileOpener">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconFileSaver">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconFileSkimmer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconGraphicPicker">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconIconManager">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconInfoBox">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconKnowledgeInput">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconNameChanger">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconPong">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconShifter">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconShiftnet">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconShiftorium">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconshutdown">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconSkinLoader">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconSkinShifter">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconTerminal">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconTextPad">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconVideoPlayer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.iconWebBrowser">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.infobox">
<summary>
Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.loadbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.newfolder">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.newicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.nextbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.openicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.pausebutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.playbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.previousbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ReceiveClicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.ReceiveUnclicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.rolldown">
<summary>
Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.rollup">
<summary>
Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.saveicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.SendClicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.SendUnclicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.skindownarrow">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.skinfile">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.skinuparrow">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.stopbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.stretchbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.stretchbuttonpressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.Symbolinfo">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.test">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.tilebutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.tilebuttonpressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.TotalBalanceClicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.TotalBalanceUnclicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.transactionsClicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.transactionsUnclicked">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.typesound">
<summary>
Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.uparrow">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.updatecustomcolourpallets">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradealartpad">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradealclock">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradealfileskimmer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradealpong">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradealshifter">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradealshiftorium">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradealtextpad">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeamandpm">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeanycolourshade">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeanycolourshade2">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeanycolourshade3">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeanycolourshade4">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeapplaunchermenu">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeapplaunchershutdown">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpad">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpad128colorpallets">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpad16colorpallets">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpad32colorpallets">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpad4colorpallets">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpad64colorpallets">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpad8colorpallets">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpaderaser">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadfilltool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadlimitlesspixels">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadlinetool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadload">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadnew">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadovaltool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpaintbrushtool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpenciltool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit1024">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit16">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit16384">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit256">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit4">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit4096">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit64">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit65536">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixellimit8">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixelplacer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadpixelplacermovementmode">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadrectangletool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadredo">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadsave">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadtexttool">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeartpadundo">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeautoscrollterminal">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeblue">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradebluecustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeblueshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeblueshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradebrown">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradebrowncustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradebrownshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradebrownshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeclock">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeclockicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeclosebutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradecolourpickericon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradecustomusername">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradedesktoppanel">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradedesktoppanelclock">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradedraggablewindows">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradefileskimmer">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradefileskimmerdelete">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradefileskimmericon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradefileskimmernew">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegray">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegraycustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegrayshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegrayshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegreen">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegreencustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegreenshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradegreenshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradehoursssincemidnight">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeinfoboxicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradekiaddons">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradekielements">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeknowledgeinput">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeknowledgeinputicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgrademinimizebutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgrademinimizecommand">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgrademinuteaccuracytime">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgrademinutesssincemidnight">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgrademoveablewindows">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgrademultitasking">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeorange">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeorangecustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeorangeshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeorangeshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepanelbuttons">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepink">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepinkcustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepinkshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepinkshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepong">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepongicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepurple">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepurplecustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepurpleshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradepurpleshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradered">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgraderedcustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgraderedshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgraderedshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgraderollupbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgraderollupcommand">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradesecondssincemidnight">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradesgameconsoles">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftapplauncher">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftborders">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftbuttons">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftdesktop">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftdesktoppanel">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshifter">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftericon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftoriumicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftpanelbuttons">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshiftpanelclock">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshifttitlebar">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshifttitletext">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeshutdownicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeskicarbrands">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeskinning">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradesplitsecondaccuracy">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeterminalicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeterminalscrollbar">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradetextpad">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradetextpadicon">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradetextpadnew">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradetextpadopen">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradetextpadsave">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradetitlebar">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradetitletext">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeunitymode">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeusefulpanelbuttons">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradewindowborders">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradewindowedterminal">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradewindowsanywhere">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeyellow">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeyellowcustom">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeyellowshades">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.upgradeyellowshadeset">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.webback">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.webforward">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.webhome">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.writesound">
<summary>
Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.zoombutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="P:ShiftOS.My.Resources.Resources.zoombuttonpressed">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member><member name="T:ShiftOS.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.NORMAL">
<summary>default operation</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.SRCCOPY">
<summary>dest = source</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.SRCPAINT">
<summary>dest = source OR dest</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.SRCAND">
<summary>dest = source AND dest</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.SRCINVERT">
<summary>dest = source XOR dest</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.SRCERASE">
<summary>dest = source AND (NOT dest)</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.NOTSRCCOPY">
<summary>dest = (NOT source)</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.NOTSRCERASE">
<summary>dest = (NOT src) AND (NOT dest)</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.MERGECOPY">
<summary>dest = (source AND pattern)</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.MERGEPAINT">
<summary>dest = (NOT source) OR dest</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.PATCOPY">
<summary>dest = pattern</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.PATPAINT">
<summary>dest = DPSnoo</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.PATINVERT">
<summary>dest = pattern XOR dest</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.DSTINVERT">
<summary>dest = (NOT dest)</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.BLACKNESS">
<summary>dest = BLACK</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.WHITENESS">
<summary>dest = WHITE</summary>
</member><member name="F:ShiftOS.API.DC.RasterOperation.CAPTUREBLT">
<summary>
Capture window as seen on screen. This includes layered windows
such as WPF windows with AllowsTransparency="true"
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.NONE">
<summary>
No SW command, default value.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.HIDE">
<summary>
Hides the window and activates another window.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.MAXIMIZE">
<summary>
Maximizes the specified window.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.MINIMIZE">
<summary>
Minimizes the specified window and activates the next top-level window in the z-order.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.RESTORE">
<summary>
Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position.
An application should specify this flag when restoring a minimized window.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOW">
<summary>
Activates the window and displays it in its current size and position.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOWDEFAULT">
<summary>
Sets the show state based on the SW_ flag specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application.
An application should call ShowWindow with this flag to set the initial show state of its main window.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOWMAXIMIZED">
<summary>
Activates the window and displays it as a maximized window.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOWMINIMIZED">
<summary>
Activates the window and displays it as a minimized window.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOWMINNOACTIVE">
<summary>
Displays the window as a minimized window. The active window remains active.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOWNA">
<summary>
Displays the window in its current state. The active window remains active.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOWNOACTIVATE">
<summary>
Displays a window in its most recent size and position. The active window remains active.
</summary>
</member><member name="F:ShiftOS.API.ShellExecuteInfo.SW.SHOWNORMAL">
<summary>
Activates and displays a window. If the window is minimized or maximized, Windows restores it to its original size and position.
An application should specify this flag when displaying the window for the first time.
</summary>
</member><member name="F:ShiftOS.API.MAPVK.VK_TO_VSC">
<summary>uCode is a virtual-key code and is translated into a scan code.
If it is a virtual-key code that does not distinguish between left- and
right-hand keys, the left-hand scan code is returned.
If there is no translation, the function returns 0.
</summary>
<remarks></remarks>
</member><member name="F:ShiftOS.API.MAPVK.VSC_TO_VK">
<summary>uCode is a scan code and is translated into a virtual-key code that
does not distinguish between left- and right-hand keys. If there is no
translation, the function returns 0.
</summary>
<remarks></remarks>
</member><member name="F:ShiftOS.API.MAPVK.VK_TO_CHAR">
<summary>uCode is a virtual-key code and is translated into an unshifted
character value in the low-order word of the return value. Dead keys (diacritics)
are indicated by setting the top bit of the return value. If there is no
translation, the function returns 0.
</summary>
<remarks></remarks>
</member><member name="F:ShiftOS.API.MAPVK.VSC_TO_VK_EX">
<summary>Windows NT/2000/XP: uCode is a scan code and is translated into a
virtual-key code that distinguishes between left- and right-hand keys. If
there is no translation, the function returns 0.
</summary>
<remarks></remarks>
</member><member name="F:ShiftOS.API.Input.MouseEvent.Move">
<summary>
Moves the cursor with the offset dx and dy
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.MoveScreen">
<summary>
Places the cursor at the screen coordinates dx and dy
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.MoveAbsolute">
<summary>
Places the cursor at the screen using dx and dy ranging from 0 (left/top) to 65535 (right/bottom)
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.MoveVirtualDesktop">
<summary>
Places the cursor at the desktop using dx and dy ranging from 0 (left/top) to 65535 (right/bottom)
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.LeftDown">
<summary>
Press the left mouse button
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.LeftUp">
<summary>
Release the left mouse button
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.RightDown">
<summary>
Press the right mouse button
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.RightUp">
<summary>
Release the right mouse button
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.MiddleDown">
<summary>
Press the middle mouse button
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.MiddleUp">
<summary>
Release the middle mouse button
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.XDown">
<summary>
Press the XButton specified in the data member
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.XUp">
<summary>
Release the XButton specified in the data member
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.MouseVWheel">
<summary>
Scroll the vertical mousewheel with the delta count of the data member
</summary>
</member><member name="F:ShiftOS.API.Input.MouseEvent.MouseHWheel">
<summary>
Scroll the horizontal mousewheel with the delta count of the data member
</summary>
</member>
</members>
</doc>
|