summaryrefslogtreecommitdiffstats
path: root/win/CS/libraries/OokiiDialogs/Ookii.Dialogs.XML
blob: 99e45451fe41d4beaf97b3d6a1d32aef19b68896 (plain)
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
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Ookii.Dialogs</name>
    </assembly>
    <members>
        <member name="T:Ookii.Dialogs.ShellAnimation">
            <summary>
            Resource identifiers for default animations from shell32.dll.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.FileMove">
            <summary>
            An animation representing a file move.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.FileCopy">
            <summary>
            An animation representing a file copy.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.FlyingPapers">
            <summary>
            An animation showing flying papers.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.SearchGlobe">
            <summary>
            An animation showing a magnifying glass over a globe.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.PermanentDelete">
            <summary>
            An animation representing a permament delete.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.FromRecycleBinDelete">
            <summary>
            An animation representing deleting an item from the recycle bin.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.ToRecycleBinDelete">
            <summary>
            An animation representing a file move to the recycle bin.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.SearchComputer">
            <summary>
            An animation representing a search spanning the local computer.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.SearchDocument">
            <summary>
            An animation representing a search in a document..
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ShellAnimation.SearchFlashlight">
            <summary>
            An animation representing a search using a flashlight animation.
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.DownlevelTextMode">
            <summary>
            An enumeration that displays how the text in the <see cref="P:Ookii.Dialogs.CredentialDialog.MainInstruction"/> and <see cref="P:Ookii.Dialogs.CredentialDialog.Content"/>
            properties is displayed on a credential dialog in Windows XP.
            </summary>
            <remarks>
            <para>
              Windows XP does not support the distinct visual style of the main instruction, so there is no visual difference between the
              text of the <see cref="P:Ookii.Dialogs.CredentialDialog.MainInstruction"/> and <see cref="P:Ookii.Dialogs.CredentialDialog.Content"/> properties. Depending
              on the scenario, you may wish to hide either the main instruction or the content text.
            </para>
            </remarks>
        </member>
        <member name="F:Ookii.Dialogs.DownlevelTextMode.MainInstructionAndContent">
            <summary>
            The text of the <see cref="P:Ookii.Dialogs.CredentialDialog.MainInstruction"/> and <see cref="P:Ookii.Dialogs.CredentialDialog.Content"/> properties is
            concatenated together, separated by an empty line.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.DownlevelTextMode.MainInstructionOnly">
            <summary>
            Only the text of the <see cref="P:Ookii.Dialogs.CredentialDialog.MainInstruction"/> property is shown.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.DownlevelTextMode.ContentOnly">
            <summary>
            Only the text of the <see cref="P:Ookii.Dialogs.CredentialDialog.Content"/> property is shown.
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.AnimationResource">
            <summary>
            Represents an animation for the <see cref="T:Ookii.Dialogs.ProgressDialog"/> loaded from a Win32 resource.
            </summary>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.AnimationResource.#ctor(System.String,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.AnimationResource"/> class.
            </summary>
            <param name="resourceFile">The file containing the animation resource.</param>
            <param name="resourceId">The resource ID of the animation resource.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="resourceFile"/> is <see langword="null"/>.</exception>
        </member>
        <member name="M:Ookii.Dialogs.AnimationResource.GetShellAnimation(Ookii.Dialogs.ShellAnimation)">
            <summary>
            Gets a default animation from shell32.dll.
            </summary>
            <param name="animation">The animation to get.</param>
            <returns>An instance of the <see cref="T:Ookii.Dialogs.AnimationResource"/> class representing the specified animation.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="animation"/> parameter was not a value defined in the
            <see cref="T:Ookii.Dialogs.ShellAnimation"/> enumeration.</exception>
        </member>
        <member name="P:Ookii.Dialogs.AnimationResource.ResourceFile">
            <summary>
            Gets the name of the file containing the animation resource.
            </summary>
            <value>
            The name of the file containing the animation resource. This is typically a DLL or EXE file.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.AnimationResource.ResourceId">
            <summary>
            Gets the ID of the animation resource.
            </summary>
            <value>
            The ID of the animation resource.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialog">
            <summary>
            Displays a Task Dialog.
            </summary>
            <remarks>
            The task dialog contains an application-defined message text and title, icons, and any combination of predefined push buttons.
            Task Dialogs are supported only on Windows Vista and above. No fallback is provided; if you wish to use task dialogs
            and support operating systems older than Windows Vista, you must provide a fallback yourself. Check the <see cref="P:Ookii.Dialogs.TaskDialog.OSSupportsTaskDialogs"/>
            property to see if task dialogs are supported. It is safe to instantiate the <see cref="T:Ookii.Dialogs.TaskDialog"/> class on an older
            OS, but calling <see cref="M:Ookii.Dialogs.TaskDialog.Show"/> or <see cref="M:Ookii.Dialogs.TaskDialog.ShowDialog"/> will throw an exception.
            </remarks>
            <threadsafety static="true" instance="false"/>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialog.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing"><see langword="true" /> if managed resources should be disposed; otherwise, <see langword="false" />.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.#ctor(System.ComponentModel.IContainer)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialog"/> class with the specified container.
            </summary>
            <param name="container">The <see cref="T:System.ComponentModel.IContainer"/> to add the <see cref="T:Ookii.Dialogs.TaskDialog"/> to.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.Show">
            <summary>
            Shows the task dialog as a modeless dialog.
            </summary>
            <returns>The button that the user clicked. Can be <see langword="null"/> if the user cancelled the dialog using the
            title bar close button.</returns>
            <remarks>
            <note>
              Although the dialog is modeless, this method does not return until the task dialog is closed.
            </note>
            </remarks>
            <exception cref="T:System.InvalidOperationException">
            <para>
              One of the properties or a combination of properties is not valid.
            </para>
            <para>
              -or-
            </para>
            <para>
              The dialog is already running.
            </para>
            </exception>
            <exception cref="T:System.NotSupportedException">Task dialogs are not supported on the current operating system.</exception>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.ShowDialog">
            <summary>
            Shows the task dialog as a modal dialog.
            </summary>
            <returns>The button that the user clicked. Can be <see langword="null"/> if the user cancelled the dialog using the
            title bar close button.</returns>
            <remarks>
            The dialog will use the active window as its owner. If the current process has no active window,
            the dialog will be displayed as a modeless dialog (identical to calling <see cref="M:Ookii.Dialogs.TaskDialog.Show"/>).
            </remarks>
            <exception cref="T:System.InvalidOperationException">
            <para>
              One of the properties or a combination of properties is not valid.
            </para>
            <para>
              -or-
            </para>
            <para>
              The dialog is already running.
            </para>
            </exception>
            <exception cref="T:System.NotSupportedException">Task dialogs are not supported on the current operating system.</exception>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.ShowDialog(System.Windows.Forms.IWin32Window)">
            <summary>
            This method is for internal Ookii.Dialogs use and should not be called from your code.
            </summary>
            <param name="owner"></param>
            <returns></returns>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.ClickVerification(System.Boolean,System.Boolean)">
            <summary>
            Simulates a click on the verification checkbox of the <see cref="T:Ookii.Dialogs.TaskDialog"/>, if it exists.
            </summary>
            <param name="checkState"><see langword="true"/> to set the state of the checkbox to be checked; <see langword="false"/> to set it to be unchecked.</param>
            <param name="setFocus"><see langword="true"/> to set the keyboard focus to the checkbox; otherwise <see langword="false"/>.</param>
            <exception cref="T:System.InvalidOperationException">The task dialog is not being displayed.</exception>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnHyperlinkClicked(Ookii.Dialogs.HyperlinkClickedEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.HyperlinkClicked"/> event.
            </summary>
            <param name="e">The <see cref="T:Ookii.Dialogs.HyperlinkClickedEventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnButtonClicked(Ookii.Dialogs.TaskDialogItemClickedEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.ButtonClicked"/> event.
            </summary>
            <param name="e">The <see cref="T:Ookii.Dialogs.TaskDialogItemClickedEventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnRadioButtonClicked(Ookii.Dialogs.TaskDialogItemClickedEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.RadioButtonClicked"/> event.
            </summary>
            <param name="e">The <see cref="T:Ookii.Dialogs.TaskDialogItemClickedEventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnVerificationClicked(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.VerificationClicked"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnCreated(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.Created"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnTimer(Ookii.Dialogs.TimerEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.Timer"/> event.
            </summary>
            <param name="e">The <see cref="T:Ookii.Dialogs.TimerEventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnDestroyed(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.Destroyed"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnExpandButtonClicked(Ookii.Dialogs.ExpandButtonClickedEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.ExpandButtonClicked"/> event.
            </summary>
            <param name="e">The <see cref="T:Ookii.Dialogs.ExpandButtonClickedEventArgs"/> containing the data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialog.OnHelpRequested(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.TaskDialog.HelpRequested"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing the data for the event.</param>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.Created">
            <summary>
            Event raised when the task dialog has been created.
            </summary>
            <remarks>
            This event is raised once after calling <see cref="M:Ookii.Dialogs.TaskDialog.ShowDialog(System.Windows.Forms.IWin32Window)"/>, after the dialog
            is created and before it is displayed.
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.Destroyed">
            <summary>
            Event raised when the task dialog has been destroyed.
            </summary>
            <remarks>
            The task dialog window no longer exists when this event is raised.
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.ButtonClicked">
            <summary>
            Event raised when the user clicks a button on the task dialog.
            </summary>
            <remarks>
            Set the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel"/> property to <see langword="true"/> to prevent the dialog from being closed.
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.RadioButtonClicked">
            <summary>
            Event raised when the user clicks a radio button on the task dialog.
            </summary>
            <remarks>
            The <see cref="P:System.ComponentModel.CancelEventArgs.Cancel"/> property is ignored for this event.
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.HyperlinkClicked">
            <summary>
            Event raised when the user clicks a hyperlink.
            </summary>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.VerificationClicked">
            <summary>
            Event raised when the user clicks the verification check box.
            </summary>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.Timer">
            <summary>
            Event raised periodically while the dialog is displayed.
            </summary>
            <remarks>
            <para>
              This event is raised only when the <see cref="P:Ookii.Dialogs.TaskDialog.RaiseTimerEvent"/> property is set to <see langword="true"/>. The event is
              raised approximately every 200 milliseconds.
            </para>
            <para>
              To reset the tick count, set the <see cref="P:Ookii.Dialogs.TimerEventArgs.ResetTickCount"/>
              property to <see langword="true"/>.
            </para>
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.ExpandButtonClicked">
            <summary>
            Event raised when the user clicks the expand button on the task dialog.
            </summary>
            <remarks>
            The <see cref="P:Ookii.Dialogs.ExpandButtonClickedEventArgs.Expanded"/> property indicates if the expanded information is visible
            or not after the click.
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.TaskDialog.HelpRequested">
            <summary>
            Event raised when the user presses F1 while the dialog has focus.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.OSSupportsTaskDialogs">
            <summary>
            Gets a value that indicates whether the current operating system supports task dialogs.
            </summary>
            <value>
            Returns <see langword="true" /> for Windows Vista or later; otherwise <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.Buttons">
            <summary>
            Gets a list of the buttons on the Task Dialog.
            </summary>
            <value>
            A list of the buttons on the Task Dialog.
            </value>
            <remarks>
            Custom buttons are displayed in the order they have in the collection. Standard buttons will always be displayed
            in the Windows-defined order, regardless of the order of the buttons in the collection.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.RadioButtons">
            <summary>
            Gets a list of the radio buttons on the Task Dialog.
            </summary>
            <value>
            A list of the radio buttons on the Task Dialog.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.WindowTitle">
            <summary>
            Gets or sets the window title of the task dialog.
            </summary>
            <value>
            The window title of the task dialog. The default is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.MainInstruction">
            <summary>
            Gets or sets the dialog's main instruction.
            </summary>
            <value>
            The dialog's main instruction. The default is an empty string ("").
            </value>
            <remarks>
            The main instruction of a task dialog will be displayed in a larger font and a different color than
            the other text of the task dialog.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.Content">
            <summary>
            Gets or sets the dialog's primary content.
            </summary>
            <value>
            The dialog's primary content. The default is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.WindowIcon">
            <summary>
            Gets or sets the icon to be used in the title bar of the dialog.
            </summary>
            <value>
            An <see cref="T:System.Drawing.Icon"/> that represents the icon of the task dialog's window.
            </value>
            <remarks>
            This property is used only when the dialog is shown as a modeless dialog; if the dialog
            is modal, it will have no icon.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.MainIcon">
            <summary>
            Gets or sets the icon to display in the task dialog.
            </summary>
            <value>
            A <see cref="T:Ookii.Dialogs.TaskDialogIcon"/> that indicates the icon to display in the main content area of the task dialog.
            The default is <see cref="F:Ookii.Dialogs.TaskDialogIcon.Custom"/>.
            </value>
            <remarks>
            When this property is set to <see cref="F:Ookii.Dialogs.TaskDialogIcon.Custom"/>, use the <see cref="P:Ookii.Dialogs.TaskDialog.CustomMainIcon"/> property to
            specify the icon to use.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.CustomMainIcon">
            <summary>
            Gets or sets a custom icon to display in the dialog.
            </summary>
            <value>
            An <see cref="T:System.Drawing.Icon"/> that represents the icon to display in the main content area of the task dialog,
            or <see langword="null"/> if no custom icon is used. The default value is <see langword="null"/>.
            </value>
            <remarks>
            This property is ignored if the <see cref="P:Ookii.Dialogs.TaskDialog.MainIcon"/> property has a value other than <see cref="F:Ookii.Dialogs.TaskDialogIcon.Custom"/>.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.FooterIcon">
            <summary>
            Gets or sets the icon to display in the footer area of the task dialog.
            </summary>
            <value>
            A <see cref="T:Ookii.Dialogs.TaskDialogIcon"/> that indicates the icon to display in the footer area of the task dialog.
            The default is <see cref="F:Ookii.Dialogs.TaskDialogIcon.Custom"/>.
            </value>        
            <remarks>
            <para>
              When this property is set to <see cref="F:Ookii.Dialogs.TaskDialogIcon.Custom"/>, use the <see cref="P:Ookii.Dialogs.TaskDialog.CustomFooterIcon"/> property to
              specify the icon to use.
            </para>
            <para>
              The footer icon is displayed only if the <see cref="P:Ookii.Dialogs.TaskDialog.Footer"/> property is not an empty string ("").
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.CustomFooterIcon">
            <summary>
            Gets or sets a custom icon to display in the footer area of the task dialog.
            </summary>
            <value>
            An <see cref="T:System.Drawing.Icon"/> that represents the icon to display in the footer area of the task dialog,
            or <see langword="null"/> if no custom icon is used. The default value is <see langword="null"/>.
            </value>
            <remarks>
            <para>
              This property is ignored if the <see cref="P:Ookii.Dialogs.TaskDialog.FooterIcon"/> property has a value other than <see cref="F:Ookii.Dialogs.TaskDialogIcon.Custom"/>.
            </para>
            <para>
              The footer icon is displayed only if the <see cref="P:Ookii.Dialogs.TaskDialog.Footer"/> property is not an empty string ("").
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ButtonStyle">
            <summary>
            Gets or sets a value that indicates whether custom buttons should be displayed as normal buttons or command links.
            </summary>
            <value>
            A <see cref="T:Ookii.Dialogs.TaskDialogButtonStyle"/> that indicates the display style of custom buttons on the dialog.
            The default value is <see cref="F:Ookii.Dialogs.TaskDialogButtonStyle.Standard"/>.
            </value>
            <remarks>
            <para>
              This property affects only custom buttons, not standard ones.
            </para>
            <para>
              If a custom button is being displayed on a task dialog
              with <see cref="P:Ookii.Dialogs.TaskDialog.ButtonStyle"/> set to <see cref="F:Ookii.Dialogs.TaskDialogButtonStyle.CommandLinks"/>
              or <see cref="F:Ookii.Dialogs.TaskDialogButtonStyle.CommandLinksNoIcon"/>, you delineate the command from the 
              note by placing a line break in the string specified by <see cref="P:Ookii.Dialogs.TaskDialogItem.Text"/> property.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.VerificationText">
            <summary>
            Gets or sets the label for the verification checkbox.
            </summary>
            <value>
            The label for the verification checkbox, or an empty string ("") if no verification checkbox
            is shown. The default value is an empty string ("").
            </value>
            <remarks>
            If no text is set, the verification checkbox will not be shown.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.IsVerificationChecked">
            <summary>
            Gets or sets a value that indicates whether the verification checkbox is checked ot not.
            </summary>
            <value>
            <see langword="true"/> if the verficiation checkbox is checked; otherwise, <see langword="false"/>.
            </value>
            <remarks>
            <para>
              Set this property before displaying the dialog to determine the initial state of the check box.
              Use this property after displaying the dialog to determine whether the check box was checked when
              the user closed the dialog.
            </para>
            <note>
              This property is only used if <see cref="P:Ookii.Dialogs.TaskDialog.VerificationText"/> is not an empty string ("").
            </note>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ExpandedInformation">
            <summary>
            Gets or sets additional information to be displayed on the dialog.
            </summary>
            <value>
            Additional information to be displayed on the dialog. The default value is an empty string ("").
            </value>
            <remarks>
            <para>
              When this property is not an empty string (""), a control is shown on the task dialog that
              allows the user to expand and collapse the text specified in this property.
            </para>
            <para>
              The text is collapsed by default unless <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedByDefault"/> is set to <see langword="true"/>.
            </para>
            <para>
              The expanded text is shown in the main content area of the dialog, unless <see cref="P:Ookii.Dialogs.TaskDialog.ExpandFooterArea"/>
              is set to <see langword="true"/>, in which case it is shown in the footer area.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ExpandedControlText">
            <summary>
            Gets or sets the text to use for the control for collapsing the expandable information specified in <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/>.
            </summary>
            <value>
            The text to use for the control for collapsing the expandable information, or an empty string ("") if the
            operating system's default text is to be used. The default is an empty string ("")
            </value>
            <remarks>
            <para>
              If this text is not specified and <see cref="P:Ookii.Dialogs.TaskDialog.CollapsedControlText"/> is specified, the value of <see cref="P:Ookii.Dialogs.TaskDialog.CollapsedControlText"/>
              will be used for this property as well. If neither is specified, the operating system's default text is used.
            </para>
            <note>
              The control for collapsing or expanding the expandable information is displayed only if <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/> is not
              an empty string ("")
            </note>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.CollapsedControlText">
            <summary>
            Gets or sets the text to use for the control for expading the expandable information specified in <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/>.
            </summary>
            <value>
            The text to use for the control for expanding the expandable information, or an empty string ("") if the
            operating system's default text is to be used. The default is an empty string ("")
            </value>
            <remarks>
            <para>
              If this text is not specified and <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedControlText"/> is specified, the value of <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedControlText"/>
              will be used for this property as well. If neither is specified, the operating system's default text is used.
            </para>
            <note>
              The control for collapsing or expanding the expandable information is displayed only if <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/> is not
              an empty string ("")
            </note>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.Footer">
            <summary>
            Gets or sets the text to be used in the footer area of the task dialog.
            </summary>
            <value>
            The text to be used in the footer area of the task dialog, or an empty string ("")
            if the footer area is not displayed. The default value is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.Width">
            <summary>
            Specifies the width of the task dialog's client area in DLU's.
            </summary>
            <value>
            The width of the task dialog's client area in DLU's, or 0 to have the task dialog calculate the ideal width.
            The default value is 0.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.EnableHyperlinks">
            <summary>
            Gets or sets a value that indicates whether hyperlinks are allowed for the <see cref="P:Ookii.Dialogs.TaskDialog.Content"/>, <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/>
            and <see cref="P:Ookii.Dialogs.TaskDialog.Footer"/> properties.
            </summary>
            <value>
            <see langword="true"/> when hyperlinks are allowed for the <see cref="P:Ookii.Dialogs.TaskDialog.Content"/>, <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/>
            and <see cref="P:Ookii.Dialogs.TaskDialog.Footer"/> properties; otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
            <remarks>
            <para>
              When  this property is <see langword="true"/>, the <see cref="P:Ookii.Dialogs.TaskDialog.Content"/>, <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/>
              and <see cref="P:Ookii.Dialogs.TaskDialog.Footer"/> properties can use hyperlinks in the following form: <c>&lt;A HREF="executablestring"&gt;Hyperlink Text&lt;/A&gt;</c>
            </para>
            <note>
              Enabling hyperlinks when using content from an unsafe source may cause security vulnerabilities.
            </note>
            <para>
              Task dialogs will not actually execute hyperlinks. To take action when the user presses a hyperlink, handle the
              <see cref="E:Ookii.Dialogs.TaskDialog.HyperlinkClicked"/> event.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.AllowDialogCancellation">
            <summary>
            Gets or sets a value that indicates that the dialog should be able to be closed using Alt-F4, Escape and the title
            bar's close button even if no cancel button is specified.
            </summary>
            <value>
            <see langword="true" /> if the dialog can be closed using Alt-F4, Escape and the title
            bar's close button even if no cancel button is specified; otherwise, <see langword="false" />.
            The default value is <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ExpandFooterArea">
            <summary>
            Gets or sets a value that indicates that the string specified by the <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/> property
            should be displayed at the bottom of the dialog's footer area instead of immediately after the dialog's content.
            </summary>
            <value>
            <see langword="true"/> if the string specified by the <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/> property
            should be displayed at the bottom of the dialog's footer area instead of immediately after the dialog's content;
            otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ExpandedByDefault">
            <summary>
            Gets or sets a value that indicates that the string specified by the <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/> property
            should be displayed by default.
            </summary>
            <value>
            <see langword="true"/> if the string specified by the <see cref="P:Ookii.Dialogs.TaskDialog.ExpandedInformation"/> property
            should be displayed by default; <see langword="false"/> if it is hidden by default. The default value is
            <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.RaiseTimerEvent">
            <summary>
            Gets or sets a value that indicates whether the <see cref="E:Ookii.Dialogs.TaskDialog.Timer"/> event is raised periodically while the dialog
            is visible.
            </summary>
            <value>
            <see langword="true"/> when the <see cref="E:Ookii.Dialogs.TaskDialog.Timer"/> event is raised periodically while the dialog is visible; otherwise,
            <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
            <remarks>
            The <see cref="E:Ookii.Dialogs.TaskDialog.Timer"/> event will be raised approximately every 200 milliseconds if this property is <see langword="true"/>.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.CenterParent">
            <summary>
            Gets or sets a value that indicates whether the dialog is centered in the parent window instead of the screen.
            </summary>
            <value>
            <see langword="true" /> when the dialog is centered relative to the parent window; <see langword="false" /> when it is centered on the screen.
            The default value is <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.RightToLeft">
            <summary>
            Gets or sets a value that indicates whether text is displayed right to left.
            </summary>
            <value>
            <see langword="true" /> when the content of the dialog is displayed right to left; otherwise, <see langword="false" />.
            The default value is <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.MinimizeBox">
            <summary>
            Gets or sets a value that indicates whether the dialog has a minimize box on its caption bar.
            </summary>
            <value>
            <see langword="true" /> if the dialog has a minimize box on its caption bar when modeless; otherwise,
            <see langword="false" />. The default is <see langword="false" />.
            </value>
            <remarks>
            A task dialog can only have a minimize box if it is displayed as a modeless dialog. The minimize box
            will never appear when using the designer "Preview" option, since that displays the dialog modally.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ProgressBarStyle">
            <summary>
            Gets or sets the type of progress bar displayed on the dialog.
            </summary>
            <value>
            A <see cref="T:Ookii.Dialogs.ProgressBarStyle"/> that indicates the type of progress bar shown on the task dialog.
            </value>
            <remarks>
            <para>
              If this property is set to <see cref="F:Ookii.Dialogs.ProgressBarStyle.MarqueeProgressBar"/>, the marquee will
              scroll as long as the dialog is visible.
            </para>
            <para>
              If this property is set to <see cref="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar"/>, the value of the
              <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarValue"/> property must be updated to advance the progress bar. This can be done e.g. by
              an asynchronous operation or from the <see cref="E:Ookii.Dialogs.TaskDialog.Timer"/> event.
            </para>
            <note>
              Updating the value of the progress bar using the <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarValue"/> while the dialog is visible property may only be done from
              the thread on which the task dialog was created.
            </note>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ProgressBarMarqueeAnimationSpeed">
            <summary>
            Gets or sets the marquee animation speed of the progress bar in milliseconds.
            </summary>
            <value>
            The marquee animation speed of the progress bar in milliseconds. The default value is 100.
            </value>
            <remarks>
            This property is only used if the <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarStyle"/> property is 
            <see cref="F:Ookii.Dialogs.ProgressBarStyle.MarqueeProgressBar"/>.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ProgressBarMinimum">
            <summary>
            Gets or sets the lower bound of the range of the task dialog's progress bar.
            </summary>
            <value>
            The lower bound of the range of the task dialog's progress bar. The default value is 0.
            </value>
            <remarks>
            This property is only used if the <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarStyle"/> property is 
            <see cref="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar"/>.
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException">The new property value is not smaller than <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarMaximum"/>.</exception>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ProgressBarMaximum">
            <summary>
            Gets or sets the upper bound of the range of the task dialog's progress bar.
            </summary>
            <value>
            The upper bound of the range of the task dialog's progress bar. The default value is 100.
            </value>
            <remarks>
            This property is only used if the <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarStyle"/> property is 
            <see cref="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar"/>.
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException">The new property value is not larger than <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarMinimum"/>.</exception>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ProgressBarValue">
            <summary>
            Gets or sets the current value of the task dialog's progress bar.
            </summary>
            <value>
            The current value of the task dialog's progress bar. The default value is 0.
            </value>
            <remarks>
            This property is only used if the <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarStyle"/> property is 
            <see cref="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar"/>.
            <note>
              Updating the value of the progress bar while the dialog is visible  may only be done from
              the thread on which the task dialog was created.
            </note>
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException">The new property value is smaller than <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarMinimum"/> or larger than <see cref="P:Ookii.Dialogs.TaskDialog.ProgressBarMaximum"/>.</exception>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.ProgressBarState">
            <summary>
            Gets or sets the state of the task dialog's progress bar.
            </summary>
            <value>
            A <see cref="T:Ookii.Dialogs.ProgressBarState"/> indicating the state of the task dialog's progress bar.
            The default value is <see cref="F:Ookii.Dialogs.ProgressBarState.Normal"/>.
            </value>
            <remarks>
            This property is only used if the <see cref="T:Ookii.Dialogs.ProgressBarStyle"/> property is 
            <see cref="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar"/>.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.Tag">
            <summary>
            Gets or sets an object that contains data about the dialog.
            </summary>
            <value>
            An object that contains data about the dialog. The default value is <see langword="null" />.
            </value>
            <remarks>
            Use this property to store arbitrary information about the dialog.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialog.Handle">
            <summary>
            Gets the window handle of the task dialog.
            </summary>
            <value>
            The window handle of the task dialog when it is being displayed, or <see cref="F:System.IntPtr.Zero"/> when the dialog
            is not being displayed.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialogItemCollection`1">
            <summary>
            Represents a list of <see cref="T:Ookii.Dialogs.TaskDialogItem"/> objects.
            </summary>
            <typeparam name="T">The type of the task dialog item.</typeparam>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItemCollection`1.ClearItems">
            <summary>
            Overrides the <see cref="M:System.Collections.ObjectModel.Collection`1.ClearItems"/> method.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItemCollection`1.InsertItem(System.Int32,`0)">
            <summary>
            Overrides the <see cref="M:System.Collections.ObjectModel.Collection`1.InsertItem(System.Int32,`0)"/> method.
            </summary>
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
            <param name="item">The object to insert. May not be <see langword="null"/>.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="item"/> is <see langword="null"/>.</exception>
            <exception cref="T:System.ArgumentException">The <see cref="T:Ookii.Dialogs.TaskDialogItem"/> specified in <paramref name="item"/> is already associated with a different task dialog.</exception>
            <exception cref="T:System.InvalidOperationException">The <see cref="T:Ookii.Dialogs.TaskDialogItem"/> specified in <paramref name="item"/> has a duplicate id or button type.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">
            <para>
              <paramref name="index"/> is less than zero.
            </para>
            <para>
              -or-
            </para>
            <para>
              <paramref name="index"/> is equal to or greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count"/>.
            </para>
            </exception>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItemCollection`1.RemoveItem(System.Int32)">
            <summary>
            Overrides the <see cref="M:System.Collections.ObjectModel.Collection`1.RemoveItem(System.Int32)"/> method.
            </summary>
            <param name="index">The zero-based index of the element to remove.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">
            <para>
              <paramref name="index"/> is less than zero.
            </para>
            <para>
              -or-
            </para>
            <para>
              <paramref name="index"/> is equal to or greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count"/>.
            </para>
            </exception>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItemCollection`1.SetItem(System.Int32,`0)">
            <summary>
            Overrides the <see cref="M:System.Collections.ObjectModel.Collection`1.SetItem(System.Int32,`0)"/> method.
            </summary>
            <param name="index">The zero-based index of the element to replace.</param>
            <param name="item">The new value for the element at the specified index. May not be <see langword="null"/>.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="item"/> is <see langword="null"/>.</exception>
            <exception cref="T:System.ArgumentException">The <see cref="T:Ookii.Dialogs.TaskDialogItem"/> specified in <paramref name="item"/> is already associated with a different task dialog.</exception>
            <exception cref="T:System.InvalidOperationException">The <see cref="T:Ookii.Dialogs.TaskDialogItem"/> specified in <paramref name="item"/> has a duplicate id or button type.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">
            <para>
              <paramref name="index"/> is less than zero.
            </para>
            <para>
              -or-
            </para>
            <para>
              <paramref name="index"/> is equal to or greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count"/>.
            </para>
            </exception>
        </member>
        <member name="T:Ookii.Dialogs.ProgressBarState">
            <summary>
            Represents the state of the progress bar on the task dialog.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ProgressBarState.Normal">
            <summary>
            Normal state.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ProgressBarState.Error">
            <summary>
            Error state
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ProgressBarState.Paused">
            <summary>
            Paused state
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.ExtendedForm">
            <summary>
            Base class for windows forms with extended functionality.
            </summary>
            <remarks>
            <para>
                In order to use this class, create a new Form in Visual Studio, then modify the base
                class in the .cs (or in Visual Basic, the .Designer.vb) file for the form to this class.
            </para>
            <para>
                This class provides two main pieces of functionality: the ability to use the system font
                and the ability to use client area glass in Windows Vista.
            </para>
            <para>
                Windows Forms applications will normally always use MS Sans Serif 8pt, even when the
                system font is something else. For example, on Windows XP (English), the system font
                is Tahoma 8pt. On Windows XP Japanese, the system font is MS UI Gothic 8pt. On Windows
                Vista it is Segoe UI 9pt. By setting the <see cref="P:Ookii.Dialogs.ExtendedForm.UseSystemFont"/> property to <see langword="true"/> for a form,
                that form will automatically use the proper system font.
            </para>
            <para>
                Because the font metrics of these different fonts can be vary greatly
                (especially on Vista which uses a larger font), please make sure the 
                <see cref="P:System.Windows.Forms.ContainerControl.AutoScaleMode"/> property is set to
                <see cref="F:System.Windows.Forms.AutoScaleMode.Font"/>, and make special provisions for resizing
                graphics and other elements.
                Please note that some system fonts (such as MS UI Gothic) can also be smaller than MS Sans Serif
                which means the form will be scaled down, not up.
            </para>
            <note>
                If you set <see cref="P:Ookii.Dialogs.ExtendedForm.UseSystemFont"/> to <see langword="true"/>, it is strongly recommended you
                test your application with various different font and DPI settings.
            </note>
            <para>
                To use glass with your form, use the <see cref="P:Ookii.Dialogs.ExtendedForm.GlassMargin"/> property. You can also
                specify whether it's possible to drag the form by its glass areas using the <see cref="P:Ookii.Dialogs.ExtendedForm.AllowGlassDragging"/>
                property. Glass requires Windows Vista with the Desktop Window Manager enabled. The glass related
                properties have no effect on other operating systems.
            </para>
            <note>
                Many Windows Forms controls will not display correctly when placed over a glass area. Use the 
                <see cref="M:Ookii.Dialogs.Glass.DrawCompositedText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.Padding,System.Drawing.Color,System.Int32,System.Windows.Forms.TextFormatFlags)"/> method to display text on a glass area.
            </note>
            <para>
                This class will automatically handle changes in the system font or DWM settings (including enabling/disabling
                of the DWM) while the application is running.
            </para>
            </remarks>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.#ctor">
            <summary>
            Creates a new instance of the <see cref="T:Ookii.Dialogs.ExtendedForm"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.OnDwmCompositionChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.ExtendedForm.DwmCompositionChanged"/> event.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> containing the event data.</param>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.OnLoad(System.EventArgs)">
            <summary>
            Overrides the <see cref="M:System.Windows.Forms.Form.OnLoad(System.EventArgs)"/> method.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.OnFormClosed(System.Windows.Forms.FormClosedEventArgs)">
            <summary>
            Overrides the <see cref="M:System.Windows.Forms.Form.OnFormClosed(System.Windows.Forms.FormClosedEventArgs)"/> method.
            </summary>
            <param name="e">A <see cref="T:System.Windows.Forms.FormClosedEventArgs"/> that contains the event data.</param>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Paints the background of the control.
            </summary>
            <param name="pevent">A <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.OnResize(System.EventArgs)">
            <summary>
            This member overrides <see cref="M:System.Windows.Forms.Form.OnResize(System.EventArgs)"/>.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.OnHandleCreated(System.EventArgs)">
            <summary>
            This member overrides <see cref="M:System.Windows.Forms.Form.OnHandleCreated(System.EventArgs)"/>.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.WndProc(System.Windows.Forms.Message@)">
            <summary>
            This member overrides <see cref="M:System.Windows.Forms.Form.WndProc(System.Windows.Forms.Message@)"/>.
            </summary>
            <param name="m">The Windows <see cref="T:System.Windows.Forms.Message"/> to process.</param>
        </member>
        <member name="M:Ookii.Dialogs.ExtendedForm.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
            <summary>
            Overrides <see cref="M:System.Windows.Forms.Form.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)"/>.
            </summary>
            <param name="factor">The height and width of the control's bounds.</param>
            <param name="specified">A <see cref="T:System.Windows.Forms.BoundsSpecified"/> value that specifies the bounds of the control to use when defining its size and position.</param>
        </member>
        <member name="E:Ookii.Dialogs.ExtendedForm.DwmCompositionChanged">
            <summary>
            Raised when Desktop Window Manager (DWM) composition has been enabled or disabled.
            </summary>
            <remarks>
            <note>
              This event is only raised on Windows Vista or later.
            </note>
            <para>
              Use the <see cref="P:Ookii.Dialogs.Glass.IsDwmCompositionEnabled"/> property to determine the
              current composition state.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ExtendedForm.UseSystemFont">
            <summary>
            Gets or sets a value that indicates whether or not the form automatically uses the system default font.
            </summary>
            <value>
            <see langword="true"/> when the form's font is automatically adjusted to the system font; 
            otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
            <remarks>
            <para>
              This property has no effect at design time; the font settings will only be applied at
              run time.
            </para>
            <para>
              When this property is set to <see langword="true"/>, the form will use the configured 
              system font and font size automatically, e.g. it will use Segoe UI on Windows Vista and 
              Tahoma on Windows XP. Please make sure the <see cref="P:System.Windows.Forms.ContainerControl.AutoScaleMode"/> 
              property is set to <see cref="F:System.Windows.Forms.AutoScaleMode.Font"/> 
              to account for the different metrics of the various fonts, and make special provisions 
              to scale graphics and other element. Note that the system font can also be smaller than
              the font you used at design time, causing the form to be scaled down. For example the font
              MS Gothic UI, used on Japanese versions of Windows (pre-Vista), has smaller metrics than
              MS Sans Serif.
            </para>
            <note>
              It is strongly recommended to test your application with different font and DPI settings if you set this property
              to <see langword="true"/>.
            </note>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ExtendedForm.GlassMargin">
            <summary>
            Gets or sets the glass margins of the form.
            </summary>
            <value>
            A <see cref="T:System.Windows.Forms.Padding"/> that indicates the glass margins of the form. The default value is
            <see cref="F:System.Windows.Forms.Padding.Empty"/>.
            </value>
            <remarks>
            <note>
              Client-area glass requires Windows Vista or later with the Desktop Window Manager enabled. If the Desktop
              Window Manager is not enabled, or an older version of Windows is used, this property is ignored.
            </note>
            <para>
              Client-area glass extends the glass frame used by the Windows Vista Aero user interface into the client
              area of your window.
            </para>
            <para>
              Use negative margins to create the "sheet of glass" effect where the client area is rendered 
              as a completely glass surface.
            </para>
            <para>
              Text rendered with the <see cref="T:System.Windows.Forms.TextRenderer"/> will not display correctly on the glass area (this includes
              text drawn by most controls). To draw text on the glass area, use <see cref="M:Ookii.Dialogs.Glass.DrawCompositedText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.Padding,System.Drawing.Color,System.Int32,System.Windows.Forms.TextFormatFlags)"/>.
            </para>
            <para>
              If the form is scaled, which can happen for instance if <see cref="P:Ookii.Dialogs.ExtendedForm.UseSystemFont"/> is <see langword="true"/>,
              the glass margin will also be scaled.
            </para>
            <para>
              At design time, the glass area will be indicated by a pattern drawn onto the form. This pattern will not
              be visible at runtime regardless of whether the glass is enabled or not.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ExtendedForm.AllowGlassDragging">
            <summary>
            Gets or sets a value that indicates whether the form can be dragged by the glass areas inside the client area.
            </summary>
            <value>
            <see langword="true"/> when the form can be dragged using the client area glass; otherwise, <see langword="false"/>.
            The default value is <see langword="false"/>.
            </value>
            <remarks>
            This property has no effect on operating systems older than Windows Vista, when the Desktop Window Manager is disabled
            or when the <see cref="P:Ookii.Dialogs.ExtendedForm.GlassMargin"/> property is set to zero.
            </remarks>
        </member>
        <member name="F:Ookii.Dialogs.InputDialogForm.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.InputDialogForm.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:Ookii.Dialogs.InputDialogForm.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialogIcon">
            <summary>
            Indicates the icon to use for a task dialog.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogIcon.Custom">
            <summary>
            A custom icon or no icon if no custom icon is specified.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogIcon.Warning">
            <summary>
            System warning icon.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogIcon.Error">
            <summary>
            System Error icon.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogIcon.Information">
            <summary>
            System Information icon.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogIcon.Shield">
            <summary>
            Shield icon.
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.ProgressDialog">
            <summary>
            Represents a dialog that can be used to report progress to the user.
            </summary>
            <remarks>
            <para>
              This class provides a wrapper for the native Windows IProgressDialog API.
            </para>
            <para>
              The <see cref="T:Ookii.Dialogs.ProgressDialog"/> class requires Windows 2000, Windows Me, or newer versions of Windows.
            </para>
            </remarks>
            <threadsafety static="true" instance="false"/>
        </member>
        <member name="F:Ookii.Dialogs.ProgressDialog.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing"><see langword="true" /> if managed resources should be disposed; otherwise, <see langword="false" />.</param>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.ProgressDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.#ctor(System.ComponentModel.IContainer)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.ProgressDialog"/> class, adding it to the specified container.
            </summary>
            <param name="container">The <see cref="T:System.ComponentModel.IContainer"/> to which the component should be added.</param>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.Show">
            <summary>
            Displays the progress dialog as a modeless dialog.
            </summary>
            <remarks>
            <para>
              This function will not block the parent window and will return immediately.
            </para>
            <para>
              Although this function returns immediately, you cannot use the UI thread to do any processing. The dialog
              will not function correctly unless the UI thread continues to handle window messages, so that thread may
              not be blocked by some other activity. All processing related to the progress dialog must be done in
              the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler.
            </para>
            </remarks>
            <exception cref="T:System.InvalidOperationException">The animation specified in the <see cref="P:Ookii.Dialogs.ProgressDialog.Animation"/> property
            could not be loaded.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.Show(System.Object)">
            <summary>
            Displays the progress dialog as a modeless dialog.
            </summary>
            <param name="argument">A parameter for use by the background operation to be executed in the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler.</param>
            <remarks>
            <para>
              This function will not block the parent window and return immediately.
            </para>
            <para>
              Although this function returns immediately, you cannot use the UI thread to do any processing. The dialog
              will not function correctly unless the UI thread continues to handle window messages, so that thread may
              not be blocked by some other activity. All processing related to the progress dialog must be done in
              the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler.
            </para>
            </remarks>
            <exception cref="T:System.InvalidOperationException">The animation specified in the <see cref="P:Ookii.Dialogs.ProgressDialog.Animation"/> property
            could not be loaded.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.ShowDialog">
            <summary>
            Displays the progress dialog as a modal dialog.
            </summary>
            <remarks>
            <para>
              The ShowDialog function for most .Net dialogs will not return until the dialog is closed. However,
              the <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> function for the <see cref="T:Ookii.Dialogs.ProgressDialog"/> class will return immediately.
              The parent window will be disabled as with all modal dialogs.
            </para>
            <para>
              Although this function returns immediately, you cannot use the UI thread to do any processing. The dialog
              will not function correctly unless the UI thread continues to handle window messages, so that thread may
              not be blocked by some other activity. All processing related to the progress dialog must be done in
              the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler.
            </para>
            <para>
              The progress dialog's window will appear in the taskbar. This behaviour is also contrary to most .Net dialogs,
              but is part of the underlying native progress dialog API so cannot be avoided.
            </para>
            <para>
              When possible, it is recommended that you use a modeless dialog using the <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> function.
            </para>
            </remarks>
            <exception cref="T:System.InvalidOperationException">The animation specified in the <see cref="P:Ookii.Dialogs.ProgressDialog.Animation"/> property
            could not be loaded.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.ShowDialog(System.Windows.Forms.IWin32Window)">
            <summary>
            Displays the progress dialog as a modal dialog.
            </summary>
            <param name="owner">The window that owns the dialog.</param>
            <remarks>
            <para>
              The ShowDialog function for most .Net dialogs will not return until the dialog is closed. However,
              the <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> function for the <see cref="T:Ookii.Dialogs.ProgressDialog"/> class will return immediately.
              The parent window will be disabled as with all modal dialogs.
            </para>
            <para>
              Although this function returns immediately, you cannot use the UI thread to do any processing. The dialog
              will not function correctly unless the UI thread continues to handle window messages, so that thread may
              not be blocked by some other activity. All processing related to the progress dialog must be done in
              the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler.
            </para>
            <para>
              The progress dialog's window will appear in the taskbar. This behaviour is also contrary to most .Net dialogs,
              but is part of the underlying native progress dialog API so cannot be avoided.
            </para>
            <para>
              When possible, it is recommended that you use a modeless dialog using the <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> function.
            </para>
            </remarks>
            <exception cref="T:System.InvalidOperationException">The animation specified in the <see cref="P:Ookii.Dialogs.ProgressDialog.Animation"/> property
            could not be loaded, or the operation is already running.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.ShowDialog(System.Windows.Forms.IWin32Window,System.Object)">
            <summary>
            Displays the progress dialog as a modal dialog.
            </summary>
            <param name="owner">The window that owns the dialog.</param>
            <param name="argument">A parameter for use by the background operation to be executed in the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler.</param>
            <remarks>
            <para>
              The ShowDialog function for most .Net dialogs will not return until the dialog is closed. However,
              the <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> function for the <see cref="T:Ookii.Dialogs.ProgressDialog"/> class will return immediately.
              The parent window will be disabled as with all modal dialogs.
            </para>
            <para>
              Although this function returns immediately, you cannot use the UI thread to do any processing. The dialog
              will not function correctly unless the UI thread continues to handle window messages, so that thread may
              not be blocked by some other activity. All processing related to the progress dialog must be done in
              the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler.
            </para>
            <para>
              The progress dialog's window will appear in the taskbar. This behaviour is also contrary to most .Net dialogs,
              but is part of the underlying native progress dialog API so cannot be avoided.
            </para>
            <para>
              When possible, it is recommended that you use a modeless dialog using the <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> function.
            </para>
            </remarks>
            <exception cref="T:System.InvalidOperationException">The animation specified in the <see cref="P:Ookii.Dialogs.ProgressDialog.Animation"/> property
            could not be loaded, or the operation is already running.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32)">
            <summary>
            Updates the dialog's progress bar.
            </summary>
            <param name="percentProgress">The percentage, from 0 to 100, of the operation that is complete.</param>
            <remarks>
            <para>
              Call this method from the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler if you want to report progress.
            </para>
            <para>
              This method has no effect is <see cref="P:Ookii.Dialogs.ProgressDialog.ProgressBarStyle"/> is <see cref="F:Ookii.Dialogs.ProgressBarStyle.MarqueeProgressBar"/>
              or <see cref="F:Ookii.Dialogs.ProgressBarStyle.None"/>.
            </para>
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="percentProgress"/> is out of range.</exception>
            <exception cref="T:System.InvalidOperationException">The progress dialog is not currently being displayed.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32,System.String,System.String)">
            <summary>
            Updates the dialog's progress bar.
            </summary>
            <param name="percentProgress">The percentage, from 0 to 100, of the operation that is complete.</param>
            <param name="text">The new value of the progress dialog's primary text message, or <see langword="null"/> to leave the value unchanged.</param>
            <param name="description">The new value of the progress dialog's additional description message, or <see langword="null"/> to leave the value unchanged.</param>
            <remarks>Call this method from the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler if you want to report progress.</remarks>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="percentProgress"/> is out of range.</exception>
            <exception cref="T:System.InvalidOperationException">The progress dialog is not currently being displayed.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32,System.String,System.String,System.Object)">
            <summary>
            Updates the dialog's progress bar.
            </summary>
            <param name="percentProgress">The percentage, from 0 to 100, of the operation that is complete.</param>
            <param name="text">The new value of the progress dialog's primary text message, or <see langword="null"/> to leave the value unchanged.</param>
            <param name="description">The new value of the progress dialog's additional description message, or <see langword="null"/> to leave the value unchanged.</param>
            <param name="userState">A state object that will be passed to the <see cref="E:Ookii.Dialogs.ProgressDialog.ProgressChanged"/> event handler.</param>
            <remarks>Call this method from the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event handler if you want to report progress.</remarks>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="percentProgress"/> is out of range.</exception>
            <exception cref="T:System.InvalidOperationException">The progress dialog is not currently being displayed.</exception>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.OnDoWork(System.ComponentModel.DoWorkEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event.
            </summary>
            <param name="e">The <see cref="T:System.ComponentModel.DoWorkEventArgs"/> containing data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.ProgressDialog.RunWorkerCompleted"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.ProgressDialog.OnProgressChanged(System.ComponentModel.ProgressChangedEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.ProgressDialog.ProgressChanged"/> event.
            </summary>
            <param name="e">The <see cref="T:System.ComponentModel.ProgressChangedEventArgs"/> containing data for the event.</param>
        </member>
        <member name="E:Ookii.Dialogs.ProgressDialog.DoWork">
            <summary>
            Event raised when the dialog is displayed.
            </summary>
            <remarks>
            Use this event to perform the operation that the dialog is showing the progress for.
            This event will be raised on a different thread than the UI thread.
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.ProgressDialog.RunWorkerCompleted">
            <summary>
            Event raised when the operation completes.
            </summary>
        </member>
        <member name="E:Ookii.Dialogs.ProgressDialog.ProgressChanged">
            <summary>
            Event raised when <see cref="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32,System.String,System.String,System.Object)"/> is called.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.WindowTitle">
            <summary>
            Gets or sets the text in the progress dialog's title bar.
            </summary>
            <value>
            The text in the progress dialog's title bar. The default value is an empty string.
            </value>
            <remarks>
            <para>
              This property must be set before <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> or <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> is called. Changing property has
              no effect while the dialog is being displayed.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.Text">
            <summary>
            Gets or sets a short description of the operation being carried out.
            </summary>
            <value>
            A short description of the operation being carried. The default value is an empty string.
            </value>
            <remarks>
            <para>
              This is the primary message to the user.
            </para>
            <para>
              This property can be changed while the dialog is running, but may only be changed from the thread which
              created the progress dialog. The recommended method to change this value while the dialog is running
              is to use the <see cref="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32,System.String,System.String)"/> method.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.UseCompactPathsForText">
            <summary>
            Gets or sets a value that indicates whether path strings in the <see cref="P:Ookii.Dialogs.ProgressDialog.Text"/> property should be compacted if
            they are too large to fit on one line.
            </summary>
            <value>
            <see langword="true"/> to compact path strings if they are too large to fit on one line; otherwise,
            <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
            <remarks>
            <note>
              This property requires Windows Vista or later. On older versions of Windows, it has no effect.
            </note>
            <para>
              This property can be changed while the dialog is running, but may only be changed from the thread which
              created the progress dialog.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.Description">
            <summary>
            Gets or sets additional details about the operation being carried out.
            </summary>
            <value>
            Additional details about the operation being carried out. The default value is an empty string.
            </value>
            <remarks>
            This text is used to provide additional details beyond the <see cref="P:Ookii.Dialogs.ProgressDialog.Text"/> property.
            </remarks>
            <remarks>
            <para>
              This property can be changed while the dialog is running, but may only be changed from the thread which
              created the progress dialog. The recommended method to change this value while the dialog is running
              is to use the <see cref="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32,System.String,System.String)"/> method.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.UseCompactPathsForDescription">
            <summary>
            Gets or sets a value that indicates whether path strings in the <see cref="P:Ookii.Dialogs.ProgressDialog.Description"/> property should be compacted if
            they are too large to fit on one line.
            </summary>
            <value>
            <see langword="true"/> to compact path strings if they are too large to fit on one line; otherwise,
            <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
            <remarks>
            <note>
              This property requires Windows Vista or later. On older versions of Windows, it has no effect.
            </note>
            <para>
              This property can be changed while the dialog is running, but may only be changed from the thread which
              created the progress dialog.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.CancellationText">
            <summary>
            Gets or sets the text that will be shown after the Cancel button is pressed.
            </summary>
            <value>
            The text that will be shown after the Cancel button is pressed.
            </value>
            <remarks>
            <para>
              This property must be set before <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> or <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> is called. Changing property has
              no effect while the dialog is being displayed.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.ShowTimeRemaining">
            <summary>
            Gets or sets a value that indicates whether an estimate of the remaining time will be shown.
            </summary>
            <value>
            <see langword="true"/> if an estimate of remaining time will be shown; otherwise, <see langword="false"/>. The
            default value is <see langword="false"/>.
            </value>
            <remarks>
            <para>
              This property must be set before <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> or <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> is called. Changing property has
              no effect while the dialog is being displayed.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.ShowCancelButton">
            <summary>
            Gets or sets a value that indicates whether the dialog has a cancel button.
            </summary>
            <value>
            <see langword="true"/> if the dialog has a cancel button; otherwise, <see langword="false"/>. The default
            value is <see langword="true"/>.
            </value>
            <remarks>
            <note>
              This property requires Windows Vista or later; on older versions of Windows, the cancel button will always
              be displayed.
            </note>
            <para>
              The event handler for the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event must periodically check the value of the
              <see cref="P:Ookii.Dialogs.ProgressDialog.CancellationPending"/> property to see if the operation has been cancelled if this
              property is <see langword="true"/>.
            </para>
            <para>
              Setting this property to <see langword="false"/> is not recommended unless absolutely necessary.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.MinimizeBox">
            <summary>
            Gets or sets a value that indicates whether the progress dialog has a minimize button.
            </summary>
            <value>
            <see langword="true"/> if the dialog has a minimize button; otherwise, <see langword="false"/>. The default
            value is <see langword="true"/>.
            </value>
            <remarks>
            <note>
              This property has no effect on modal dialogs (which do not have a minimize button). It only applies
              to modeless dialogs shown by using the <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> method.
            </note>
            <para>
              This property must be set before <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> is called. Changing property has
              no effect while the dialog is being displayed.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.CancellationPending">
            <summary>
            Gets a value indicating whether the user has requested cancellation of the operation.
            </summary>
            <value>
            <see langword="true"/> if the user has cancelled the progress dialog; otherwise, <see langword="false"/>. The default is <see langword="false"/>.
            </value>
            <remarks>
            The event handler for the <see cref="E:Ookii.Dialogs.ProgressDialog.DoWork"/> event must periodically check this property and abort the operation
            if it returns <see langword="true"/>.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.Animation">
            <summary>
            Gets or sets the animation to show on the progress dialog.
            </summary>
            <value>
            An instance of <see cref="T:Ookii.Dialogs.AnimationResource"/> which specifies the animation to show, or <see langword="null"/>
            to show no animation. The default value is <see langword="null"/>.
            </value>
            <remarks>
            <para>
              This property has no effect on Windows Vista or later. On Windows XP, this property will default to
              a flying papers animation.
            </para>
            <para>
              This property must be set before <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> or <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> is called. Changing property has
              no effect while the dialog is being displayed.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.ProgressBarStyle">
            <summary>
            Gets or sets a value that indicates whether a regular or marquee style progress bar should be used.
            </summary>
            <value>
            One of the values of <see cref="T:Ookii.Dialogs.ProgressBarStyle"/>. 
            The default value is <see cref="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar"/>.
            </value>
            <remarks>
            <note>
              Operating systems older than Windows Vista do not support marquee progress bars on the progress dialog. On those operating systems, the
              progress bar will be hidden completely if this property is <see cref="F:Ookii.Dialogs.ProgressBarStyle.MarqueeProgressBar"/>.
            </note>
            <para>
              When this property is set to <see cref="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar"/>, use the <see cref="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32)"/> method to set
              the value of the progress bar. When this property is set to <see cref="F:Ookii.Dialogs.ProgressBarStyle.MarqueeProgressBar"/>
              you can still use the <see cref="M:Ookii.Dialogs.ProgressDialog.ReportProgress(System.Int32,System.String,System.String)"/> method to update the text of the dialog,
              but the percentage will be ignored.
            </para>
            <para>
              This property must be set before <see cref="M:Ookii.Dialogs.ProgressDialog.ShowDialog"/> or <see cref="M:Ookii.Dialogs.ProgressDialog.Show"/> is called. Changing property has
              no effect while the dialog is being displayed.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.ProgressDialog.IsBusy">
            <summary>
            Gets a value that indicates whether the <see cref="T:Ookii.Dialogs.ProgressDialog"/> is running an asynchronous operation.
            </summary>
            <value>
            <see langword="true"/> if the <see cref="T:Ookii.Dialogs.ProgressDialog"/> is running an asynchronous operation; 
            otherwise, <see langword="false"/>.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.AdditionalVisualStyleElements">
            <summary>
            Contains classes that provide additional visual style elements not available through the regular
            <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement"/> class.
            </summary>
            <threadsafety instance="false" static="false"/>
        </member>
        <member name="T:Ookii.Dialogs.AdditionalVisualStyleElements.TextStyle">
            <summary>
            Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement"/> objects for
            text styles.
            </summary>
            <remarks>
            <note>
              Use of these styles requires Windows Vista or a newer version of Windows.
            </note>
            </remarks>
            <threadsafety instance="false" static="false"/>
        </member>
        <member name="P:Ookii.Dialogs.AdditionalVisualStyleElements.TextStyle.MainInstruction">
            <summary>
            Gets a visual style element that represents the main instruction in a dialog box.
            </summary>
            <value>
            A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement"/> representing the style for the main instruction.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.AdditionalVisualStyleElements.TextStyle.BodyText">
            <summary>
            Gets a visual style element that represents the body text in a dialog box.
            </summary>
            <value>
            A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement"/> representing the style for the body text.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.AdditionalVisualStyleElements.TaskDialog">
            <summary>
            Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement"/> objects
            for task dialog related elements.
            </summary>
            <remarks>
            <note>
              Use of these styles requires Windows Vista or a newer version of Windows.
            </note>
            </remarks>
            <threadsafety instance="false" static="false"/>
        </member>
        <member name="P:Ookii.Dialogs.AdditionalVisualStyleElements.TaskDialog.PrimaryPanel">
            <summary>
            Gets a visual style element that represents the primary panel of a task dialog.
            </summary>
            <value>
            A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement"/> representing the style for the primary panel.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.AdditionalVisualStyleElements.TaskDialog.SecondaryPanel">
            <summary>
            Gets a visual style element that represents the secondary panel of a task dialog.
            </summary>
            <value>
            A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement"/> representing the style for the secondary panel.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialogItem">
            <summary>
            Represents a button or radio button on a task dialog.
            </summary>
            <threadsafety instance="false" static="true" />
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogItem.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItem.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing"><see langword="true"/> if managed resources should be disposed; otherwise, <see langword="false"/>.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItem.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItem.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogItem"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItem.#ctor(System.ComponentModel.IContainer)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogItem"/> class with the specified container.
            </summary>
            <param name="container">The <see cref="T:System.ComponentModel.IContainer"/> to add the <see cref="T:Ookii.Dialogs.TaskDialogItem"/> to.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItem.Click">
            <summary>
            Simulates a click on the task dialog item.
            </summary>
            <remarks>
            This method is available only while the task dialog is being displayed. You would typically call
            it from one of the events fired by the <see cref="T:Ookii.Dialogs.TaskDialog"/> class while the dialog is visible.
            </remarks>
            <exception cref="T:System.InvalidOperationException">
            <para>The task dialog is not being displayed</para>
            <para>-or-</para>
            <para>The item has no associated task dialog.</para>
            </exception>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItem.UpdateOwner">
            <summary>
            Causes a full update of the owner dialog.
            </summary>
            <remarks>
            <para>
              When this method is called, the owner dialog will be updated to reflect the
              current state of the object.
            </para>
            <para>
              When the <see cref="T:Ookii.Dialogs.TaskDialogItem"/> has no owner, or the owner is not being
              displayed, this method has no effect.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogItem.Owner">
            <summary>
            Gets the <see cref="T:Ookii.Dialogs.TaskDialog"/> that owns this <see cref="T:Ookii.Dialogs.TaskDialogItem"/>.
            </summary>
            <value>
            The <see cref="T:Ookii.Dialogs.TaskDialog"/> that owns this <see cref="T:Ookii.Dialogs.TaskDialogItem"/>.
            </value>
            <remarks>
            This property is set automatically when the <see cref="T:Ookii.Dialogs.TaskDialogItem"/> is added
            to the <see cref="P:Ookii.Dialogs.TaskDialog.Buttons"/> or <see cref="P:Ookii.Dialogs.TaskDialog.RadioButtons"/>
            collection of a <see cref="T:Ookii.Dialogs.TaskDialog"/>.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogItem.Text">
            <summary>
            Gets or sets the text of the item.
            </summary>
            <value>
            The text of the item. The default value is an empty string ("").
            </value>
            <remarks>
            <para>
              For buttons, this property is ignored if <see cref="P:Ookii.Dialogs.TaskDialogButton.ButtonType"/> is any value other 
              than <see cref="F:Ookii.Dialogs.ButtonType.Custom"/>.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogItem.Enabled">
            <summary>
            Gets or sets a value that indicates whether the item is enabled.
            </summary>
            <value>
            <see langword="true" /> if this item is enabled; otherwise, <see langword="false" />.
            </value>
            <remarks>
            If a button or radio button is not enabled, it will be grayed out and cannot be
            selected or clicked.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogItem.Id">
            <summary>
            Gets or sets the ID of the item.
            </summary>
            <value>
            The unique identifier of the item.
            </value>
            <remarks>
            <para>
              The identifier of an item must be unique for the type of item on the task dialog (i.e. no two
              buttons can have the same id, no two radio buttons can have the same id, but a radio button
              can have the same id as a button).
            </para>
            <para>
              If this property is zero when the <see cref="T:Ookii.Dialogs.TaskDialogItem"/> is added to the <see cref="P:Ookii.Dialogs.TaskDialog.Buttons"/>
              or <see cref="P:Ookii.Dialogs.TaskDialog.RadioButtons"/> collection of a task dialog, it will automatically be set
              to the next available id value.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogItem.ItemCollection">
            <summary>
            When implemented in a derived class, gets the item collection on a task dialog that this type of item is
            part of.
            </summary>
            <value>
            For <see cref="T:Ookii.Dialogs.TaskDialogButton"/> items, the <see cref="P:Ookii.Dialogs.TaskDialog.Buttons"/>
            collection of the <see cref="T:Ookii.Dialogs.TaskDialog"/> instance this item is part of. For <see cref="T:Ookii.Dialogs.TaskDialogRadioButton"/> items, the <see cref="P:Ookii.Dialogs.TaskDialog.RadioButtons"/>
            collection of the <see cref="T:Ookii.Dialogs.TaskDialog"/> instance this item is part of. If the <see cref="T:Ookii.Dialogs.TaskDialogItem"/> is not
            currently associated with a <see cref="T:Ookii.Dialogs.TaskDialog"/>, <see langword="null"/>.
            </value>
            <remarks>
            The collection returned by this property is used to determine if there are any items with duplicate IDs.
            </remarks>
        </member>
        <member name="T:Ookii.Dialogs.ProgressBarStyle">
            <summary>
            Indicates the type of progress on a task dialog.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ProgressBarStyle.None">
            <summary>
            No progress bar is displayed on the dialog.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ProgressBarStyle.ProgressBar">
            <summary>
            A regular progress bar is displayed on the dialog.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ProgressBarStyle.MarqueeProgressBar">
            <summary>
            A marquee progress bar is displayed on the dialog. Use this value for operations
            that cannot report concrete progress information.
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.OkButtonClickedEventArgs">
            <summary>
            Provides data for the <see cref="E:Ookii.Dialogs.InputDialog.OkButtonClicked"/> event.
            </summary>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.OkButtonClickedEventArgs.#ctor(System.String,System.Windows.Forms.IWin32Window)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.OkButtonClickedEventArgs"/> class with the specified input text
            and input box window.
            </summary>
            <param name="input">The current value of the input field on the dialog.</param>
            <param name="inputBoxWindow">The input box window.</param>
        </member>
        <member name="P:Ookii.Dialogs.OkButtonClickedEventArgs.Input">
            <summary>
            Gets the current value of the input field on the dialog.
            </summary>
            <value>
            The current value of the input field on the dialog.
            </value>
            <remarks>
            The <see cref="P:Ookii.Dialogs.InputDialog.Input"/> property will not be updated until the dialog has been closed,
            so this property can be used to determine the value entered by the user when this event is raised.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.OkButtonClickedEventArgs.InputBoxWindow">
            <summary>
            Gets the input box window.
            </summary>
            <value>
            The <see cref="T:System.Windows.Forms.IWin32Window"/> for the input box window.
            </value>
            <remarks>
            You can use this property if you need to display a modal dialog (for example to alert the user if the current input value
            is invalid) and you want the input box to be the parent of that dialog.
            </remarks>
        </member>
        <member name="T:Ookii.Dialogs.InputDialog">
            <summary>
            Represents a dialog that allows the user to input a single text value.
            </summary>
            <remarks>
            Using a modal dialog to ask the user for input is not often the best design decision. Carefully
            evaluate alternative methods, such as in-place editing, if applicable, before using this dialog.
            </remarks>
            <threadsafety instance="false" static="true" />
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.InputDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.#ctor(System.ComponentModel.IContainer)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.InputDialog"/> class, adding it to the specified container.
            </summary>
            <param name="container">The <see cref="T:System.ComponentModel.IContainer"/> to add the component to.</param>
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.OnInputChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.InputDialog.InputChanged"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.OnOkButtonClicked(Ookii.Dialogs.OkButtonClickedEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.InputDialog.OkButtonClicked"/> event.
            </summary>
            <param name="e">The <see cref="T:Ookii.Dialogs.OkButtonClickedEventArgs"/> containing data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.ShowDialog">
            <summary>
            Displays the input box as a modal dialog box.
            </summary>
            <returns>The <see cref="T:System.Windows.Forms.DialogResult"/> value that corresponds to the button the user clicked.</returns>
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.ShowDialog(System.Windows.Forms.IWin32Window)">
            <summary>
            Displays the input box as a modal dialog box with the specified owner.
            </summary>
            <param name="owner">The <see cref="T:System.Windows.Forms.IWin32Window"/> that will be the owner of the dialog box.</param>
            <returns>The <see cref="T:System.Windows.Forms.DialogResult"/></returns>
        </member>
        <member name="F:Ookii.Dialogs.InputDialog.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing"><see langword="true" /> if managed resources should be disposed; otherwise, <see langword="false" />.</param>
        </member>
        <member name="M:Ookii.Dialogs.InputDialog.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="E:Ookii.Dialogs.InputDialog.InputChanged">
            <summary>
            Event raised when the value of the <see cref="P:Ookii.Dialogs.InputDialog.Input"/> property changes.
            </summary>
            <remarks>
            The value of the <see cref="P:Ookii.Dialogs.InputDialog.Input"/> property is updated only when the user clicks OK and the dialog is closed, not while
            the user is using the dialog.
            </remarks>
        </member>
        <member name="E:Ookii.Dialogs.InputDialog.OkButtonClicked">
            <summary>
            Event raised when the user clicks the OK button on the dialog.
            </summary>
            <remarks>
            Set the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel"/> property to <see langword="true"/> to prevent the dialog from closing.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.MainInstruction">
            <summary>
            Gets or sets the dialog's main instruction.
            </summary>
            <value>
            The dialog's main instruction. The default value is an empty string ("").
            </value>
            <remarks>
            When running on Windows Vista or newer, the main instruction of the input dialog will be displayed in a larger font and a different color than
            the other text of the input dialog. Otherwise, it will be shown in bold.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.Content">
            <summary>
            Gets or sets the dialog's primary content.
            </summary>
            <value>
            The dialog's primary content. The default value is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.WindowTitle">
            <summary>
            Gets or sets the window title of the dialog.
            </summary>
            <value>
            The window title of the dialog. The default is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.Input">
            <summary>
            Gets or sets the text specified by the user.
            </summary>
            <value>
            The initial text of the input field, or the text specified by the user. The default vaue is an empty string ("").
            </value>
            <remarks>
            Setting this property before calling <see cref="M:Ookii.Dialogs.InputDialog.ShowDialog"/> determines the initial text in the input field. Retrieving
            the property after the user has clicked OK will return the text entered by the user.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.MaxLength">
            <summary>
            Gets or sets the maximum number of characters that can be entered into the input field of the dialog.
            </summary>
            <value>
            The number of characters that can be entered into the input field. The default value is 32767.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.UsePasswordMasking">
            <summary>
            Gets or sets a value that indicates whether the input will be masked using the system password character.
            </summary>
            <value>
            <see langword="true" /> if the input is masked; otherwise, <see langword="false" />. The default value is <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.BindingContext">
            <summary>
            Gets or sets the collection of currency managers for the <see cref="T:Ookii.Dialogs.InputDialog"/>.
            </summary>
            <value>
            The collection of currency managers for the <see cref="T:Ookii.Dialogs.TaskDialog"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.InputDialog.DataBindings">
            <summary>
            Gets the collection of data-binding objects for this <see cref="T:Ookii.Dialogs.InputDialog"/>.
            </summary>
            <value>
            The collection of data-binding objects for this <see cref="T:Ookii.Dialogs.TaskDialog"/>.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.CredentialException">
            <summary>
            The exception that is thrown when an error occurs getting credentials.
            </summary>
            <threadsafety instance="false" static="true" />
        </member>
        <member name="M:Ookii.Dialogs.CredentialException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialException"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.CredentialException.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialException"/> class with the specified error. 
            </summary>
            <param name="error">The Win32 error code associated with this exception.</param>
        </member>
        <member name="M:Ookii.Dialogs.CredentialException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialException"/> class with a specified error message.
            </summary>
            <param name="message">The message that describes the error.</param>
        </member>
        <member name="M:Ookii.Dialogs.CredentialException.#ctor(System.Int32,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialException"/> class with the specified error and the specified detailed description.
            </summary>
            <param name="error">The Win32 error code associated with this exception.</param>
            <param name="message">A detailed description of the error.</param>
        </member>
        <member name="M:Ookii.Dialogs.CredentialException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
            <param name="innerException">A reference to the inner exception that is the cause of the current exception.</param>
        </member>
        <member name="M:Ookii.Dialogs.CredentialException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialException"/> class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
        </member>
        <member name="T:Ookii.Dialogs.VistaOpenFileDialog">
            <summary>
            Prompts the user to open a file.
            </summary>
            <remarks>
            <para>
              This class will use the Vista style file dialog if possible, and automatically fall back to the old-style 
              dialog on versions of Windows older than Vista.
            </para>
            <para>
              As of .Net 3.5 and .Net 2.0 SP1, the regular <see cref="T:System.Windows.Forms.OpenFileDialog"/> class will also use
              the new Vista style dialogs. However, certain options, such as settings <see cref="P:System.Windows.Forms.OpenFileDialog.ShowReadOnly"/>,
              still cause that class to revert to the old style dialogs. For this reason, this class is still provided.
              It is recommended that you use the <see cref="T:System.Windows.Forms.FileDialog"/> class whenever possible.
            </para>
            </remarks>
            <threadsafety static="true" instance="false"/>
        </member>
        <member name="T:Ookii.Dialogs.VistaFileDialog">
            <summary>
            Displays a dialog box from which the user can select a file.
            </summary>
            <remarks>
            <para>
              This class will use the Vista style file dialog if possible, and automatically fall back to the old-style 
              dialog on versions of Windows older than Vista.
            </para>
            <para>
              As of .Net 3.5 and .Net 2.0 SP1, the regular <see cref="T:System.Windows.Forms.FileDialog"/> class will also use
              the new Vista style dialogs. However, certain options, such as settings <see cref="P:System.Windows.Forms.OpenFileDialog.ShowReadOnly"/>,
              still cause that class to revert to the old style dialogs. For this reason, this class is still provided.
              It is recommended that you use the <see cref="T:System.Windows.Forms.FileDialog"/> class whenever possible.
            </para>
            </remarks>
            <threadsafety static="true" instance="false"/>
        </member>
        <member name="M:Ookii.Dialogs.VistaFileDialog.#ctor">
            <summary>
            Creates a new insatnce of <see cref="T:Ookii.Dialogs.VistaFileDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaFileDialog.Reset">
            <summary>
            Resets all properties to their default values.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaFileDialog.RunDialog(System.IntPtr)">
            <summary>
            Specifies a common dialog box.
            </summary>
            <param name="hwndOwner">A value that represents the window handle of the owner window for the common dialog box.</param>
            <returns><see langword="true"/> if the file could be opened; otherwise, <see langword="false"/>.</returns>
        </member>
        <member name="M:Ookii.Dialogs.VistaFileDialog.OnFileOk(System.ComponentModel.CancelEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.VistaFileDialog.FileOk"/> event.
            </summary>
            <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
        </member>
        <member name="M:Ookii.Dialogs.VistaFileDialog.Dispose(System.Boolean)">
            <summary>
            Releases the unmanaged resources used by the <see cref="T:Ookii.Dialogs.VistaFileDialog"/> and optionally releases the managed resources.
            </summary>
            <param name="disposing"><see langword="true"/> to release both managed and unmanaged resources; <see langword="false"/> to release only unmanaged resources.</param>
        </member>
        <member name="E:Ookii.Dialogs.VistaFileDialog.FileOk">
            <summary>
            Occurs when the user clicks on the Open or Save button on a file dialog box.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.IsVistaFileDialogSupported">
            <summary>
            Gets a value that indicates whether the current OS supports Vista-style common file dialogs.
            </summary>
            <value>
            <see langword="true"/> on Windows Vista or newer operating systems; otherwise, <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.AddExtension">
            <summary>
            Gets or sets a value indicating whether the dialog box automatically adds an extension to a file name 
            if the user omits the extension.
            </summary>
            <value>
            <see langword="true"/> if the dialog box adds an extension to a file name if the user omits the extension; otherwise, <see langword="false"/>. 
            The default value is <see langword="true"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.CheckFileExists">
            <summary>
            Gets or sets a value indicating whether the dialog box displays a warning if the user specifies a file name that does not exist.
            </summary>
            <value>
            <see langword="true"/> if the dialog box displays a warning if the user specifies a file name that does not exist; otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.CheckPathExists">
            <summary>
            Gets or sets a value indicating whether the dialog box displays a warning if the user specifies a path that does not exist.
            </summary>
            <value>
            <see langword="true"/> if the dialog box displays a warning when the user specifies a path that does not exist; otherwise, <see langword="false"/>. 
            The default value is <see langword="true"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.DefaultExt">
            <summary>
            Gets or sets the default file name extension.
            </summary>
            <value>
            The default file name extension. The returned string does not include the period. The default value is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.DereferenceLinks">
            <summary>
            Gets or sets a value indicating whether the dialog box returns the location of the file referenced by the shortcut 
            or whether it returns the location of the shortcut (.lnk).
            </summary>
            <value>
            <see langword="true"/> if the dialog box returns the location of the file referenced by the shortcut; otherwise, <see langword="false"/>.
            The default value is <see langword="true"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.FileName">
            <summary>
            Gets or sets a string containing the file name selected in the file dialog box.
            </summary>
            <value>
            The file name selected in the file dialog box. The default value is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.FileNames">
            <summary>
            Gets the file names of all selected files in the dialog box.
            </summary>
            <value>
            An array of type String, containing the file names of all selected files in the dialog box.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.Filter">
            <summary>
            Gets or sets the current file name filter string, which determines the choices that appear in the 
            "Save as file type" or "Files of type" box in the dialog box.
            </summary>
            <value>
            The file filtering options available in the dialog box.
            </value>
            <exception cref="T:System.ArgumentException">Filter format is invalid.</exception>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.FilterIndex">
            <summary>
            Gets or sets the index of the filter currently selected in the file dialog box.
            </summary>
            <value>
            A value containing the index of the filter currently selected in the file dialog box. The default value is 1.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.InitialDirectory">
            <summary>
            Gets or sets the initial directory displayed by the file dialog box.
            </summary>
            <value>
            The initial directory displayed by the file dialog box. The default is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.RestoreDirectory">
            <summary>
            Gets or sets a value indicating whether the dialog box restores the current directory before closing.
            </summary>
            <value>
            <see langword="true"/> if the dialog box restores the current directory to its original value if the user changed the 
            directory while searching for files; otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.ShowHelp">
            <summary>
            Gets or sets a value indicating whether the Help button is displayed in the file dialog box.
            </summary>
            <value>
            <see langword="true"/> if the dialog box includes a help button; otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.Title">
            <summary>
            Gets or sets the file dialog box title.
            </summary>
            <value>
            The file dialog box title. The default value is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.SupportMultiDottedExtensions">
            <summary>
            Gets or sets whether the dialog box supports displaying and saving files that have multiple file name extensions.
            </summary>
            <value>
            <see langword="true"/> if the dialog box supports multiple file name extensions; otherwise, <see langword="false"/>. The default is <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.ValidateNames">
            <summary>
            Gets or sets a value indicating whether the dialog box accepts only valid Win32 file names.
            </summary>
            <value>
            <see langword="true"/> if the dialog box accepts only valid Win32 file names; otherwise, <see langword="false"/>. The default value is <see langword="true"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFileDialog.DownlevelDialog">
            <summary>
            Gets or sets the downlevel file dialog which is to be used if the Vista-style
            dialog is not supported.
            </summary>
            <value>
            The downlevel file dialog which is to be used if the Vista-style
            dialog is not supported.
            </value>
        </member>
        <member name="M:Ookii.Dialogs.VistaOpenFileDialog.#ctor">
            <summary>
            Creates a new instance of <see cref="T:Ookii.Dialogs.VistaOpenFileDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaOpenFileDialog.#ctor(System.Boolean)">
            <summary>
            Creates a new instance of <see cref="T:Ookii.Dialogs.VistaOpenFileDialog"/> class.
            </summary>
            <param name="forceDownlevel">When <see langword="true"/>, the old style common file dialog will always be used even if the OS supports the Vista style.</param>
        </member>
        <member name="M:Ookii.Dialogs.VistaOpenFileDialog.Reset">
            <summary>
            Resets all properties to their default values.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaOpenFileDialog.OpenFile">
            <summary>
            Opens the file selected by the user, with read-only permission. The file is specified by the FileName property. 
            </summary>
            <returns>A Stream that specifies the read-only file selected by the user.</returns>
            <exception cref="T:System.ArgumentNullException">The file name is <see langword="null"/>.</exception>
        </member>
        <member name="P:Ookii.Dialogs.VistaOpenFileDialog.CheckFileExists">
            <summary>
            Gets or sets a value indicating whether the dialog box displays a warning if the user specifies a file name that does not exist.
            </summary>
            <value>
            <see langword="true"/> if the dialog box displays a warning if the user specifies a file name that does not exist; otherwise, <see langword="false"/>. The default value is <see langword="true"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaOpenFileDialog.Multiselect">
            <summary>
            Gets or sets a value indicating whether the dialog box allows multiple files to be selected.
            </summary>
            <value>
            <see langword="true"/> if the dialog box allows multiple files to be selected together or concurrently; otherwise, <see langword="false"/>. 
            The default value is <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaOpenFileDialog.ShowReadOnly">
            <summary>
            Gets or sets a value indicating whether the dialog box contains a read-only check box.
            </summary>
            <value>
            <see langword="true"/> if the dialog box contains a read-only check box; otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
            <remarks>
            If the Vista style dialog is used, this property can only be used to determine whether the user chose
            Open as read-only on the dialog; setting it in code will have no effect.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.VistaOpenFileDialog.ReadOnlyChecked">
            <summary>
            Gets or sets a value indicating whether the read-only check box is selected.
            </summary>
            <value>
            <see langword="true"/> if the read-only check box is selected; otherwise, <see langword="false"/>. The default value is <see langword="false"/>.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.TimerEventArgs">
            <summary>
            Provides data for the <see cref="E:Ookii.Dialogs.TaskDialog.Timer"/> event.
            </summary>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.TimerEventArgs.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TimerEventArgs"/> class with the specified tick count.
            </summary>
            <param name="tickCount">The tick count.</param>
        </member>
        <member name="P:Ookii.Dialogs.TimerEventArgs.ResetTickCount">
            <summary>
            Gets or sets a value that indicates whether the tick count should be reset.
            </summary>
            <value>
            <see langword="true" /> to reset the tick count after the event handler returns; otherwise, <see langword="false" />.
            The default value is <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TimerEventArgs.TickCount">
            <summary>
            Gets the current tick count of the timer.
            </summary>
            <value>
            The number of milliseconds that has elapsed since the dialog was created or since the last time the event handler returned
            with the <see cref="P:Ookii.Dialogs.TimerEventArgs.ResetTickCount"/> property set to <see langword="true"/>.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialogItemClickedEventArgs">
            <summary>
            Provides data for the <see cref="E:Ookii.Dialogs.TaskDialog.ButtonClicked"/> event.
            </summary>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogItemClickedEventArgs.#ctor(Ookii.Dialogs.TaskDialogItem)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogItemClickedEventArgs"/> class with the specified item.
            </summary>
            <param name="item">The <see cref="T:Ookii.Dialogs.TaskDialogItem"/> that was clicked.</param>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogItemClickedEventArgs.Item">
            <summary>
            Gets the item that was clicked.
            </summary>
            <value>
            The <see cref="T:Ookii.Dialogs.TaskDialogItem"/> that was clicked.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialogButton">
            <summary>
            A button on a <see cref="T:Ookii.Dialogs.TaskDialog"/>.
            </summary>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogButton.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogButton"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogButton.#ctor(Ookii.Dialogs.ButtonType)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogButton"/> class with the specified button type.
            </summary>
            <param name="type">The type of the button.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogButton.#ctor(System.ComponentModel.IContainer)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogButton"/> class with the specified container.
            </summary>
            <param name="container">The <see cref="T:System.ComponentModel.IContainer"/> to add the <see cref="T:Ookii.Dialogs.TaskDialogButton"/> to.</param>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogButton.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogButton"/> class with the specified text.
            </summary>
            <param name="text">The text of the button.</param>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogButton.ButtonType">
            <summary>
            Gets or sets the type of the button.
            </summary>
            <value>
            One of the <see cref="T:Ookii.Dialogs.ButtonType"/> values that indicates the type of the button. The default value
            is <see cref="F:Ookii.Dialogs.ButtonType.Custom"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogButton.CommandLinkNote">
            <summary>
            Gets or sets the text of the note associated with a command link button.
            </summary>
            <value>
            The text of the note associated with a command link button.
            </value>
            <remarks>
            <para>
              This property applies only to buttons where the <see cref="T:System.Type"/> property
              is <see cref="F:Ookii.Dialogs.ButtonType.Custom"/>. For other button types, it is ignored.
            </para>
            <para>
              In addition, it is used only if the <see cref="P:Ookii.Dialogs.TaskDialog.ButtonStyle"/> property is set to
              <see cref="F:Ookii.Dialogs.TaskDialogButtonStyle.CommandLinks"/> or <see cref="F:Ookii.Dialogs.TaskDialogButtonStyle.CommandLinksNoIcon"/>;
              otherwise, it is ignored.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogButton.Default">
            <summary>
            Gets or sets a value that indicates if the button is the default button on the dialog.
            </summary>
            <value><see langword="true" /> if the button is the default button; otherwise, <see langword="false" />.
            The default value is <see langword="false" />.</value>
            <remarks>
            If no button has this property set to <see langword="true" />, the first button on the dialog will be the default button.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogButton.ElevationRequired">
            <summary>
            Gets or sets a value that indicates whether the Task Dialog button or command link should have a 
            User Account Control (UAC) shield icon (in other words, whether the action invoked by the 
            button requires elevation). 
            </summary>
            <value>
            <see langword="true" /> if the button contains a UAC shield icon; otherwise, <see langword="false" />.
            </value>
            <remarks>
            Elevation is not performed by the task dialog; the code implementing the operation that results from
            the button being clicked is responsible for performing elevation if required.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogButton.ItemCollection">
            <summary>
            Gets the collection that items of this type are part of.
            </summary>
            <value>
            If the <see cref="T:Ookii.Dialogs.TaskDialogButton"/> is currently associated with a <see cref="T:Ookii.Dialogs.TaskDialog"/>, the
            <see cref="P:Ookii.Dialogs.TaskDialog.Buttons"/> collection of that <see cref="T:Ookii.Dialogs.TaskDialog"/>; otherwise, <see langword="null"/>.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.Properties.Resources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.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:Ookii.Dialogs.Properties.Resources.AnimationLoadErrorFormat">
            <summary>
              Looks up a localized string similar to Unable to load the progress dialog animation: {0}.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.CredentialEmptyTargetError">
            <summary>
              Looks up a localized string similar to The credential target may not be an empty string..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.CredentialError">
            <summary>
              Looks up a localized string similar to An error occurred acquiring credentials..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.CredentialPromptNotCalled">
            <summary>
              Looks up a localized string similar to PromptForCredentialsWithSave has not been called or the credentials were modified after the call..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.DuplicateButtonTypeError">
            <summary>
              Looks up a localized string similar to The task dialog already has a non-custom button with the same type..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.DuplicateItemIdError">
            <summary>
              Looks up a localized string similar to The task dialog already has an item with the same id..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.FileNotFoundFormat">
            <summary>
              Looks up a localized string similar to The file &quot;{0}&quot; could not be found..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.GlassNotSupportedError">
            <summary>
              Looks up a localized string similar to The current operating system does not support glass, or the Desktop Window Manager is not enabled..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.Help">
            <summary>
              Looks up a localized string similar to Help.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.InvalidFilterString">
            <summary>
              Looks up a localized string similar to Invalid filter string,.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.InvalidTaskDialogItemIdError">
            <summary>
              Looks up a localized string similar to The id of a task dialog item must be higher than 0..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.NoAssociatedTaskDialogError">
            <summary>
              Looks up a localized string similar to The item is not associated with a task dialog..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.NonCustomTaskDialogButtonIdError">
            <summary>
              Looks up a localized string similar to Cannot change the id for a standard button..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.Preview">
            <summary>
              Looks up a localized string similar to Preview.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.ProgressDialogNotRunningError">
            <summary>
              Looks up a localized string similar to The progress dialog is not shown..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.ProgressDialogRunning">
            <summary>
              Looks up a localized string similar to The progress dialog is already running..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.TaskDialogEmptyButtonLabelError">
            <summary>
              Looks up a localized string similar to A custom button or radio button cannot have an empty label..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.TaskDialogIllegalCrossThreadCallError">
            <summary>
              Looks up a localized string similar to Cross-thread operation not valid: Task dialog accessed from a thread other than the thread it was created on while it is visible..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.TaskDialogItemHasOwnerError">
            <summary>
              Looks up a localized string similar to The task dialog item already belongs to another task dialog..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.TaskDialogNoButtonsError">
            <summary>
              Looks up a localized string similar to The task dialog must have buttons..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.TaskDialogNotRunningError">
            <summary>
              Looks up a localized string similar to The task dialog is not current displayed..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.TaskDialogRunningError">
            <summary>
              Looks up a localized string similar to The task dialog is already being displayed..
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.Properties.Resources.TaskDialogsNotSupportedError">
            <summary>
              Looks up a localized string similar to The operating system does not support task dialogs..
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.Glass">
            <summary>
            Provides functionality to use Aero Glass.
            </summary>
            <remarks>
            <para>
              This class provides functionality to extend the Windows Vista Aero glass window frame into a window's
              client area, and to draw text on the glass area.
            </para>
            <para>
              The <see cref="T:Ookii.Dialogs.ExtendedForm"/> class provides more comprehensive support for client area glass than
              using <see cref="M:Ookii.Dialogs.Glass.ExtendFrameIntoClientArea(System.Windows.Forms.IWin32Window,System.Windows.Forms.Padding)"/> by using its <see cref="P:Ookii.Dialogs.ExtendedForm.GlassMargin"/> property. 
              In addition to the basic client area glass support, <see cref="T:Ookii.Dialogs.ExtendedForm"/> will also
              respond to changes in the Desktop Window Manager state and enable/disable client area glass as necessary. It also
              allows the window to be dragged using the client area glass areas using the <see cref="P:Ookii.Dialogs.ExtendedForm.AllowGlassDragging"/>
              property.
            </para>
            <note>
              Use of glass requires Windows Vista or later with the Desktop Window Manager enabled.
            </note>
            </remarks>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.Glass.ExtendFrameIntoClientArea(System.Windows.Forms.IWin32Window,System.Windows.Forms.Padding)">
            <summary>
            Extends the glass window frame into the client area of the specified window.
            </summary>
            <param name="window">The <see cref="T:System.Windows.Forms.IWin32Window"/> on which to enable client area glass.</param>
            <param name="glassMargin">The the margins to use when extending the frame into the client area.</param>
            <remarks>
            <para>
              Use negative margins to create the "sheet of glass" effect where the client area is rendered 
              as a completely glass surface.
            </para>
            <para>
              The glass area must be filled with either a black brush or the <see cref="P:System.Windows.Forms.Form.TransparencyKey"/> color
              in order to display correctly. If the <see cref="P:System.Windows.Forms.Form.TransparencyKey"/> method is used, clicks in the
              glass area will "fall through" the window to the window below it. If the black brush method is used, text
              rendered with the <see cref="T:System.Windows.Forms.TextRenderer"/> will not display correctly on the glass area (this includes
              text drawn by most controls). To draw text on the glass area, use <see cref="M:Ookii.Dialogs.Glass.DrawCompositedText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.Padding,System.Drawing.Color,System.Int32,System.Windows.Forms.TextFormatFlags)"/>.
            </para>
            <para>
              This method needs to be called again if the state of the Desktop Window Manager is toggled.
            </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException"><paramref name="window"/> is <see langword="null"/>.</exception>
            <exception cref="T:System.NotSupportedException">The current operating system does not support glass, or the Desktop Window Manager is not enabled.</exception>
        </member>
        <member name="M:Ookii.Dialogs.Glass.DrawCompositedText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.Padding,System.Drawing.Color,System.Int32,System.Windows.Forms.TextFormatFlags)">
            <summary>
            Draws composited text onto the glass area of a form.
            </summary>
            <param name="dc">The <see cref="T:System.Drawing.IDeviceContext"/> onto which the composited text should be drawn.</param>
            <param name="text">The text to draw.</param>
            <param name="font">The <see cref="T:System.Drawing.Font"/> to apply to the drawn text.</param>
            <param name="bounds">The <see cref="T:System.Drawing.Rectangle"/> that represents the bounds of the text.</param>
            <param name="padding">The <see cref="T:System.Windows.Forms.Padding"/> around the text; necessary to allow space for the glow effect.</param>
            <param name="foreColor">The <see cref="T:System.Drawing.Color"/> to apply to the drawn text.</param>
            <param name="textFormat">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags"/> values.</param>
            <param name="glowSize">Specifies the size of a glow that will be drawn on the background prior to any text being drawn.</param>
            <remarks>
            <para>
              Do not use this method to draw text on non-glass areas of a form.
            </para>
            </remarks>
            <exception cref="T:System.NotSupportedException">The current operating system does not support glass, or the Desktop Window Manager is not enabled.</exception>
            <exception cref="T:System.ArgumentNullException"><paramref name="dc"/>, <paramref name="text"/> or <paramref name="font"/> is <see langword="null"/>.</exception>
        </member>
        <member name="M:Ookii.Dialogs.Glass.MeasureCompositedText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags)">
            <summary>
            Provides the size, in pixels, of the specified text.
            </summary>
            <param name="dc">The device context in which to measure the text.</param>
            <param name="text">The text to measure.</param>
            <param name="font">The <see cref="T:System.Drawing.Font"/> to apply to the measured text.</param>
            <param name="textFormat">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags"/> values.</param>
            <returns>The <see cref="T:System.Drawing.Size"/>, in pixels, of <paramref name="text"/> drawn with the specified <paramref name="font"/> and format.</returns>
            <exception cref="T:System.NotSupportedException">The current operating system does not support glass, or the Desktop Window Manager is not enabled.</exception>
            <exception cref="T:System.ArgumentNullException"><paramref name="dc"/>, <paramref name="text"/> or <paramref name="font"/> is <see langword="null"/>.</exception>
        </member>
        <member name="P:Ookii.Dialogs.Glass.OSSupportsDwmComposition">
            <summary>
            Gets a value that indicates whether the operating system supports composition through the Desktop Window Manager.
            </summary>
            <value>
            <see langword="true" /> on operating systems that support the Desktop Window Manager (Windows Vista and higher); otherwise, <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.Glass.IsDwmCompositionEnabled">
            <summary>
            Gets a value that indicates whether desktop composition is enabled.
            </summary>
            <value>
            <see langword="true" /> when desktop composition is supported and enabled; otherwise, <see langword="false" />.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.CredentialDialog">
            <summary>
            Represents a dialog box that allows the user to enter generic credentials.
            </summary>
            <remarks>
            <para>
              This class is meant for generic credentials; it does not provide access to all the functionality
              of the Windows CredUI API. Features such as Windows domain credentials or alternative security
              providers (e.g. smartcards or biometric devices) are not supported.
            </para>
            <para>
              The <see cref="T:Ookii.Dialogs.CredentialDialog"/> class provides methods for storing and retrieving credentials,
              and also manages automatic persistence of credentials by using the "Save password" checkbox on
              the credentials dialog. To specify the target for which the credentials should be saved, set the
              <see cref="P:Ookii.Dialogs.CredentialDialog.Target"/> property.
            </para>
            <note>
              This class requires Windows XP or later.
            </note>
            </remarks>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="F:Ookii.Dialogs.CredentialDialog.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing"><see langword="true"/> if managed resources should be disposed; otherwise, <see langword="false"/>.</param>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.#ctor(System.ComponentModel.IContainer)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.CredentialDialog"/> class with the specified container.
            </summary>
            <param name="container">The <see cref="T:System.ComponentModel.IContainer"/> to add the component to.</param>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.ShowDialog">
            <summary>
            Shows the credentials dialog as a modal dialog.
            </summary>
            <returns><see cref="F:System.Windows.Forms.DialogResult.OK"/> if the user clicked OK; otherwise, <see cref="F:System.Windows.Forms.DialogResult.Cancel"/>.</returns>
            <remarks>
            <para>
              The credentials dialog will not be shown if one of the following conditions holds:
            </para>
            <list type="bullet">
              <item>
                <description>
                  <see cref="P:Ookii.Dialogs.CredentialDialog.UseApplicationInstanceCredentialCache"/> is <see langword="true"/> and the application instance
                  credential cache contains credentials for the specified <see cref="P:Ookii.Dialogs.CredentialDialog.Target"/>, even if <see cref="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials"/>
                  is <see langword="true"/>.
                </description>
              </item>
              <item>
                <description>
                  <see cref="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox"/> is <see langword="true"/>, <see cref="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials"/> is <see langword="false"/>, and the operating system credential store
                  for the current user contains credentials for the specified <see cref="P:Ookii.Dialogs.CredentialDialog.Target"/>.
                </description>
              </item>
            </list>
            <para>
              In these cases, the <see cref="P:Ookii.Dialogs.CredentialDialog.Credentials"/>, <see cref="P:Ookii.Dialogs.CredentialDialog.UserName"/> and <see cref="P:Ookii.Dialogs.CredentialDialog.Password"/> properties will
              be set to the saved credentials and this function returns immediately, returning <see cref="F:System.Windows.Forms.DialogResult.OK"/>.
            </para>
            <para>
              If the <see cref="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox"/> property is <see langword="true"/>, you should call <see cref="M:Ookii.Dialogs.CredentialDialog.ConfirmCredentials(System.Boolean)"/>
              after validating if the provided credentials are correct.
            </para>
            </remarks>
            <exception cref="T:Ookii.Dialogs.CredentialException">An error occurred while showing the credentials dialog.</exception>
            <exception cref="T:System.InvalidOperationException"><see cref="P:Ookii.Dialogs.CredentialDialog.Target"/> is an empty string ("").</exception>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.ShowDialog(System.Windows.Forms.IWin32Window)">
            <summary>
            Shows the credentials dialog as a modal dialog with the specified owner.
            </summary>
            <param name="owner">The <see cref="T:System.Windows.Forms.IWin32Window"/> that owns the credentials dialog.</param>
            <returns><see cref="F:System.Windows.Forms.DialogResult.OK"/> if the user clicked OK; otherwise, <see cref="F:System.Windows.Forms.DialogResult.Cancel"/>.</returns>
            <remarks>
            <para>
              The credentials dialog will not be shown if one of the following conditions holds:
            </para>
            <list type="bullet">
              <item>
                <description>
                  <see cref="P:Ookii.Dialogs.CredentialDialog.UseApplicationInstanceCredentialCache"/> is <see langword="true"/> and the application instance
                  credential cache contains credentials for the specified <see cref="P:Ookii.Dialogs.CredentialDialog.Target"/>, even if <see cref="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials"/>
                  is <see langword="true"/>.
                </description>
              </item>
              <item>
                <description>
                  <see cref="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox"/> is <see langword="true"/>, <see cref="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials"/> is <see langword="false"/>, and the operating system credential store
                  for the current user contains credentials for the specified <see cref="P:Ookii.Dialogs.CredentialDialog.Target"/>.
                </description>
              </item>
            </list>
            <para>
              In these cases, the <see cref="P:Ookii.Dialogs.CredentialDialog.Credentials"/>, <see cref="P:Ookii.Dialogs.CredentialDialog.UserName"/> and <see cref="P:Ookii.Dialogs.CredentialDialog.Password"/> properties will
              be set to the saved credentials and this function returns immediately, returning <see cref="F:System.Windows.Forms.DialogResult.OK"/>.
            </para>
            <para>
              If the <see cref="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox"/> property is <see langword="true"/>, you should call <see cref="M:Ookii.Dialogs.CredentialDialog.ConfirmCredentials(System.Boolean)"/>
              after validating if the provided credentials are correct.
            </para>
            </remarks>
            <exception cref="T:Ookii.Dialogs.CredentialException">An error occurred while showing the credentials dialog.</exception>
            <exception cref="T:System.InvalidOperationException"><see cref="P:Ookii.Dialogs.CredentialDialog.Target"/> is an empty string ("").</exception>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.ConfirmCredentials(System.Boolean)">
            <summary>
            Confirms the validity of the credential provided by the user.
            </summary>
            <param name="confirm"><see langword="true"/> if the credentials that were specified on the dialog are valid; otherwise, <see langword="false"/>.</param>
            <remarks>
            Call this function after calling <see cref="M:Ookii.Dialogs.CredentialDialog.ShowDialog"/> when <see cref="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox"/> is <see langword="true"/>.
            Only when this function is called with <paramref name="confirm"/> set to <see langword="true"/> will the credentials be
            saved in the credentials store and/or the application instance credential cache.
            </remarks>
            <exception cref="T:System.InvalidOperationException"><see cref="M:Ookii.Dialogs.CredentialDialog.ShowDialog"/> was not called, or the user did not click OK, or <see cref="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox"/> was <see langword="false"/>
            at the call, or the value of <see cref="P:Ookii.Dialogs.CredentialDialog.Target"/> or <see cref="P:Ookii.Dialogs.CredentialDialog.IsSaveChecked"/>
            was changed after the call.</exception>
            <exception cref="T:Ookii.Dialogs.CredentialException">There was an error saving the credentials.</exception>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.StoreCredential(System.String,System.Net.NetworkCredential)">
            <summary>
            Stores the specified credentials in the operating system's credential store for the currently logged on user.
            </summary>
            <param name="target">The target name for the credentials.</param>
            <param name="credential">The credentials to store.</param>
            <exception cref="T:System.ArgumentNullException">
            <para>
              <paramref name="target"/> is <see langword="null"/>.
            </para>
            <para>
              -or-
            </para>
            <para>
              <paramref name="credential"/> is <see langword="null"/>.
            </para>
            </exception>
            <exception cref="T:System.ArgumentException"><paramref name="target"/> is an empty string ("").</exception>
            <exception cref="T:Ookii.Dialogs.CredentialException">An error occurred storing the credentials.</exception>
            <remarks>
            <note>
              The <see cref="P:System.Net.NetworkCredential.Domain"/> property is ignored and will not be stored, even if it is
              not <see langword="null"/>.
            </note>
            <para>
              If the credential manager already contains credentials for the specified <paramref name="target"/>, they
              will be overwritten; this can even overwrite credentials that were stored by another application. Therefore 
              it is strongly recommended that you prefix the target name to ensure uniqueness, e.g. using the
              form "Company_ApplicationName_www.example.com".
            </para>
            </remarks>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.RetrieveCredential(System.String)">
            <summary>
            Retrieves credentials for the specified target from the operating system's credential store for the current user.
            </summary>
            <param name="target">The target name for the credentials.</param>
            <returns>The credentials if they were found; otherwise, <see langword="null"/>.</returns>
            <remarks>
            <para>
              If the requested credential was not originally stored using the <see cref="T:Ookii.Dialogs.CredentialDialog"/> class (but e.g. by 
              another application), the password may not be decoded correctly.
            </para>
            <para>
              This function does not check the application instance credential cache for the credentials; for that you can use
              the <see cref="M:Ookii.Dialogs.CredentialDialog.RetrieveCredentialFromApplicationInstanceCache(System.String)"/> function.
            </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException"><paramref name="target"/> is <see langword="null"/>.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="target"/> is an empty string ("").</exception>
            <exception cref="T:Ookii.Dialogs.CredentialException">An error occurred retrieving the credentials.</exception>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.RetrieveCredentialFromApplicationInstanceCache(System.String)">
            <summary>
            Tries to get the credentials for the specified target from the application instance credential cache.
            </summary>
            <param name="target">The target for the credentials, typically a server name.</param>
            <returns>The credentials that were found in the application instance cache; otherwise, <see langword="null"/>.</returns>
            <remarks>
            <para>
              This function will only check the the application instance credential cache; the operating system's credential store
              is not checked. To retrieve credentials from the operating system's store, use <see cref="M:Ookii.Dialogs.CredentialDialog.RetrieveCredential(System.String)"/>.
            </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException"><paramref name="target"/> is <see langword="null"/>.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="target"/> is an empty string ("").</exception>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.DeleteCredential(System.String)">
            <summary>
            Deletes the credentials for the specified target.
            </summary>
            <param name="target">The name of the target for which to delete the credentials.</param>
            <returns><see langword="true"/> if the credential was deleted from either the application instance cache or
            the operating system's store; <see langword="false"/> if no credentials for the specified target could be found
            in either store.</returns>
            <remarks>
            <para>
              The credentials for the specified target will be removed from the application instance credential cache
              and the operating system's credential store.
            </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException"><paramref name="target"/> is <see langword="null"/>.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="target"/> is an empty string ("").</exception>
            <exception cref="T:Ookii.Dialogs.CredentialException">An error occurred deleting the credentials from the operating system's credential store.</exception>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.OnUserNameChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.CredentialDialog.UserNameChanged"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing data for the event.</param>
        </member>
        <member name="M:Ookii.Dialogs.CredentialDialog.OnPasswordChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.CredentialDialog.PasswordChanged"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> containing data for the event.</param>
        </member>
        <member name="E:Ookii.Dialogs.CredentialDialog.UserNameChanged">
            <summary>
            Event raised when the <see cref="P:Ookii.Dialogs.CredentialDialog.UserName"/> property changes.
            </summary>
        </member>
        <member name="E:Ookii.Dialogs.CredentialDialog.PasswordChanged">
            <summary>
            Event raised when the <see cref="P:Ookii.Dialogs.CredentialDialog.Password"/> property changes.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.UseApplicationInstanceCredentialCache">
            <summary>
            Gets or sets whether to use the application instance credential cache.
            </summary>
            <value>
            <see langword="true"/> when credentials are saved in the application instance cache; <see langref="false"/> if they are not.
            The default value is <see langword="false"/>.
            </value>
            <remarks>
            <para>
              The application instance credential cache stores credentials in memory while an application is running. When the
              application exits, this cache is not persisted.
            </para>
            <para>
              When the <see cref="P:Ookii.Dialogs.CredentialDialog.UseApplicationInstanceCredentialCache"/> property is set to <see langword="true"/>, credentials that
              are confirmed with <see cref="M:Ookii.Dialogs.CredentialDialog.ConfirmCredentials(System.Boolean)"/> when the user checked the "save password" option will be stored
              in the application instance cache as well as the operating system credential store.
            </para>
            <para>
              When <see cref="M:Ookii.Dialogs.CredentialDialog.ShowDialog"/> is called, and credentials for the specified <see cref="P:Ookii.Dialogs.CredentialDialog.Target"/> are already present in
              the application instance cache, the dialog will not be shown and the cached credentials are returned, even if
              <see cref="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials"/> is <see langword="true"/>.
            </para>
            <para>
              The application instance credential cache allows you to prevent prompting the user again for the lifetime of the
              application if the "save password" checkbox was checked, but when the application is restarted you can prompt again
              (initializing the dialog with the saved credentials). To get this behaviour, the <see cref="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials"/>
              property must be set to <see langword="true"/>.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.IsSaveChecked">
            <summary>
            Gets or sets whether the "save password" checkbox is checked.
            </summary>
            <value>
            <see langword="true" /> if the "save password" is checked; otherwise, <see langword="false" />.
            The default value is <see langword="false" />.
            </value>
            <remarks>
            The value of this property is only valid if the dialog box is displayed with a save checkbox.
            Set this property before showing the dialog to determine the initial checked value of the save checkbox.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.Password">
            <summary>
            Gets the password the user entered in the dialog.
            </summary>
            <value>
            The password entered in the password field of the credentials dialog.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.Credentials">
            <summary>
            Gets the user-specified user name and password in a <see cref="T:System.Net.NetworkCredential"/> object.
            </summary>
            <value>
            A <see cref="T:System.Net.NetworkCredential"/> instance containing the user name and password specified on the dialog.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.UserName">
            <summary>
            Gets the user name the user entered in the dialog.
            </summary>
            <value>
            The user name entered in the user name field of the credentials dialog.
            The default value is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.Target">
            <summary>
            Gets or sets the target for the credentials, typically a server name.
            </summary>
            <value>
            The target for the credentials. The default value is an empty string ("").
            </value>
            <remarks>
            Credentials are stored on a per user, not on a per application basis. To ensure that credentials stored by different 
            applications do not conflict, you should prefix the target with an application-specific identifer, e.g. 
            "Company_Application_target".
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.WindowTitle">
            <summary>
            Gets or sets the title of the credentials dialog.
            </summary>
            <value>
            The title of the credentials dialog. The default value is an empty string ("").
            </value>
            <remarks>
            <para>
              This property is not used on Windows Vista and newer versions of windows; the window title will always be "Windows Security"
              in that case.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.MainInstruction">
            <summary>
            Gets or sets a brief message to display in the dialog box.
            </summary>
            <value>
            A brief message that will be displayed in the dialog box. The default value is an empty string ("").
            </value>
            <remarks>
            <para>
              On Windows Vista and newer versions of Windows, this text is displayed using a different style to set it apart
              from the other text. In the default style, this text is a slightly larger and colored blue. The style is identical
              to the main instruction of a task dialog.
            </para>
            <para>
              On Windows XP, this text is not distinguished from other text. It's display mode depends on the <see cref="P:Ookii.Dialogs.CredentialDialog.DownlevelTextMode"/>
              property.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.Content">
            <summary>
            Gets or sets additional text to display in the dialog.
            </summary>
            <value>
            Additional text to display in the dialog. The default value is an empty string ("").
            </value>
            <remarks>
            <para>
              On Windows Vista and newer versions of Windows, this text is placed below the <see cref="P:Ookii.Dialogs.CredentialDialog.MainInstruction"/> text.
            </para>
            <para>
              On Windows XP, how and if this text is displayed depends on the value of the <see cref="P:Ookii.Dialogs.CredentialDialog.DownlevelTextMode"/>
              property.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.DownlevelTextMode">
            <summary>
            Gets or sets a value that indicates how the text of the <see cref="P:Ookii.Dialogs.CredentialDialog.MainInstruction"/> and <see cref="P:Ookii.Dialogs.CredentialDialog.Content"/> properties
            is displayed on Windows XP.
            </summary>
            <value>
            One of the values of the <see cref="T:Ookii.Dialogs.DownlevelTextMode"/> enumeration. The default value is
            <see cref="F:Ookii.Dialogs.DownlevelTextMode.MainInstructionAndContent"/>.
            </value>
            <remarks>
            <para>
              Windows XP does not support the distinct visual style of the main instruction, so there is no visual difference between the
              text of the <see cref="P:Ookii.Dialogs.CredentialDialog.MainInstruction"/> and <see cref="P:Ookii.Dialogs.CredentialDialog.Content"/> properties. Depending
              on your requirements, you may wish to hide either the main instruction or the content text.
            </para>
            <para>
              This property has no effect on Windows Vista and newer versions of Windows.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox">
            <summary>
            Gets or sets a value that indicates whether a check box is shown on the dialog that allows the user to choose whether to save
            the credentials or not.
            </summary>
            <value>
            <see langword="true"/> when the "save password" checkbox is shown on the credentials dialog; otherwise, <see langword="false"/>.
            The default value is <see langword="false"/>.
            </value>
            <remarks>
            When this property is set to <see langword="true"/>, you must call the <see cref="M:Ookii.Dialogs.CredentialDialog.ConfirmCredentials(System.Boolean)"/> method to save the
            credentials. When this property is set to <see langword="false"/>, the credentials will never be saved, and you should not call
            the <see cref="M:Ookii.Dialogs.CredentialDialog.ConfirmCredentials(System.Boolean)"/> method.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials">
            <summary>
            Gets or sets a value that indicates whether the dialog should be displayed even when saved credentials exist for the 
            specified target.
            </summary>
            <value>
            <see langword="true"/> if the dialog is displayed even when saved credentials exist; otherwise, <see langword="false"/>.
            The default value is <see langword="false"/>.
            </value>
            <remarks>
            <para>
              This property applies only when the <see cref="P:Ookii.Dialogs.CredentialDialog.ShowSaveCheckBox"/> property is <see langword="true"/>.
            </para>
            <para>
              Note that even if this property is <see langword="true"/>, if the proper credentials exist in the 
              application instance credentials cache the dialog will not be displayed.
            </para>
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.CredentialDialog.IsStoredCredential">
            <summary>
            Gets a value that indicates whether the current credentials were retrieved from a credential store.
            </summary>
            <value>
            <see langword="true"/> if the current credentials returned by the <see cref="P:Ookii.Dialogs.CredentialDialog.UserName"/>, <see cref="P:Ookii.Dialogs.CredentialDialog.Password"/>,
            and <see cref="P:Ookii.Dialogs.CredentialDialog.Credentials"/> properties were retrieved from either the application instance credential cache
            or the operating system's credential store; otherwise, <see langword="false"/>.
            </value>
            <remarks>
            <para>
              You can use this property to determine if the credentials dialog was shown after a call to <see cref="M:Ookii.Dialogs.CredentialDialog.ShowDialog"/>.
              If the dialog was shown, this property will be <see langword="false"/>; if the credentials were retrieved from the
              application instance cache or the credential store and the dialog was not shown it will be <see langword="true"/>.
            </para>
            <para>
              If the <see cref="P:Ookii.Dialogs.CredentialDialog.ShowUIForSavedCredentials"/> property is set to <see langword="true"/>, and the dialog is shown
              but populated with stored credentials, this property will still return <see langword="false"/>.
            </para>
            </remarks>
        </member>
        <member name="T:Ookii.Dialogs.VistaSaveFileDialog">
            <summary>
            Prompts the user to select a location for saving a file.
            </summary>
            <remarks>
            <para>
              This class will use the Vista style file dialog if possible, and automatically fall back to the old-style 
              dialog on versions of Windows older than Vista.
            </para>
            <para>
              As of .Net 3.5 and .Net 2.0 SP1, the regular <see cref="T:System.Windows.Forms.FileDialog"/> class will also use
              the new Vista style dialogs. However, certain options, such as settings <see cref="P:System.Windows.Forms.OpenFileDialog.ShowReadOnly"/>,
              still cause that class to revert to the old style dialogs. For this reason, this class is still provided.
              It is recommended that you use the <see cref="T:System.Windows.Forms.SaveFileDialog"/> class whenever possible.
            </para>
            </remarks>
            <threadsafety static="true" instance="false"/>
        </member>
        <member name="M:Ookii.Dialogs.VistaSaveFileDialog.#ctor">
            <summary>
            Creates a new instance of <see cref="T:Ookii.Dialogs.VistaSaveFileDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaSaveFileDialog.#ctor(System.Boolean)">
            <summary>
            Creates a new instance of <see cref="T:Ookii.Dialogs.VistaSaveFileDialog"/> class.
            </summary>
            <param name="forceDownlevel">When <see langword="true"/>, the old style common file dialog will always be used even if the OS supports the Vista style.</param>
        </member>
        <member name="M:Ookii.Dialogs.VistaSaveFileDialog.Reset">
            <summary>
            Resets all properties to their default values.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaSaveFileDialog.OpenFile">
            <summary>
            Opens the file with read/write permission selected by the user.
            </summary>
            <returns>The read/write file selected by the user.</returns>
            <exception cref="T:System.ArgumentNullException"><see cref="P:Ookii.Dialogs.VistaFileDialog.FileName"/> is <see langword="null"/> or an empty string.</exception>
        </member>
        <member name="M:Ookii.Dialogs.VistaSaveFileDialog.OnFileOk(System.ComponentModel.CancelEventArgs)">
            <summary>
            Raises the <see cref="E:Ookii.Dialogs.VistaFileDialog.FileOk"/> event.
            </summary>
            <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>        
        </member>
        <member name="P:Ookii.Dialogs.VistaSaveFileDialog.CreatePrompt">
            <summary>
            Gets or sets a value indicating whether the dialog box prompts the user for permission to create a file if the 
            user specifies a file that does not exist.
            </summary>
            <value>
            <see langword="true"/> if the dialog box prompts the user before creating a file if the user specifies a file name that does not exist; 
            <see langword="false"/> if the dialog box automatically creates the new file without prompting the user for permission. The default 
            value is <see langword="false"/>.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaSaveFileDialog.OverwritePrompt">
            <summary>
            Gets or sets a value indicating whether the Save As dialog box displays a warning if the user 
            specifies a file name that already exists.
            </summary>
            <value>
            <see langword="true"/> if the dialog box prompts the user before overwriting an existing file if the user specifies a file 
            name that already exists; <see langword="false"/> if the dialog box automatically overwrites the existing file without 
            prompting the user for permission. The default value is <see langword="true"/>.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.ButtonType">
            <summary>
            Represents the type of a task dialog button.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ButtonType.Custom">
            <summary>
            The button is a custom button.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ButtonType.Ok">
            <summary>
            The button is the common OK button.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ButtonType.Yes">
            <summary>
            The button is the common Yes button.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ButtonType.No">
            <summary>
            The button is the common No button.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ButtonType.Cancel">
            <summary>
            The button is the common Cancel button.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ButtonType.Retry">
            <summary>
            The button is the common Retry button.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.ButtonType.Close">
            <summary>
            The button is the common Close button.
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.VistaFolderBrowserDialog">
            <summary>
            Prompts the user to select a folder.
            </summary>
            <remarks>
            This class will use the Vista style Select Folder dialog if possible, or the regular FolderBrowserDialog
            if it is not. Note that the Vista style dialog is very different, so using this class without testing
            in both Vista and older Windows versions is not recommended.
            </remarks>
            <threadsafety instance="false" static="true" />
        </member>
        <member name="M:Ookii.Dialogs.VistaFolderBrowserDialog.#ctor">
            <summary>
            Creates a new instance of the <see cref="T:Ookii.Dialogs.VistaFolderBrowserDialog"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaFolderBrowserDialog.Reset">
            <summary>
            Resets all properties to their default values.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.VistaFolderBrowserDialog.RunDialog(System.IntPtr)">
            <summary>
            Specifies a common dialog box.
            </summary>
            <param name="hwndOwner">A value that represents the window handle of the owner window for the common dialog box.</param>
            <returns><see langword="true" /> if the file could be opened; otherwise, <see langword="false" />.</returns>
        </member>
        <member name="M:Ookii.Dialogs.VistaFolderBrowserDialog.Dispose(System.Boolean)">
            <summary>
            Releases the unmanaged resources used by the <see cref="T:Ookii.Dialogs.VistaFolderBrowserDialog"/> and optionally releases the managed resources.
            </summary>
            <param name="disposing"><see langword="true"/> to release both managed and unmanaged resources; <see langword="false"/> to release only unmanaged resources.</param>
        </member>
        <member name="E:Ookii.Dialogs.VistaFolderBrowserDialog.HelpRequest">
            <summary>
            Occurs when the user clicks the Help button on the dialog box.
            </summary>
        </member>
        <member name="P:Ookii.Dialogs.VistaFolderBrowserDialog.IsVistaFolderDialogSupported">
            <summary>
            Gets a value that indicates whether the current OS supports Vista-style common file dialogs.
            </summary>
            <value>
            <see langword="true" /> on Windows Vista or newer operating systems; otherwise, <see langword="false" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFolderBrowserDialog.Description">
            <summary>
            Gets or sets the descriptive text displayed above the tree view control in the dialog box, or below the list view control
            in the Vista style dialog.
            </summary>
            <value>
            The description to display. The default is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFolderBrowserDialog.RootFolder">
            <summary>
            Gets or sets the root folder where the browsing starts from. This property has no effect if the Vista style
            dialog is used.
            </summary>
            <value>
            One of the <see cref="T:System.Environment.SpecialFolder"/> values. The default is Desktop.
            </value>
            <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Environment.SpecialFolder"/> values.</exception>
        </member>
        <member name="P:Ookii.Dialogs.VistaFolderBrowserDialog.SelectedPath">
            <summary>
            Gets or sets the path selected by the user.
            </summary>
            <value>
            The path of the folder first selected in the dialog box or the last folder selected by the user. The default is an empty string ("").
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFolderBrowserDialog.ShowNewFolderButton">
            <summary>
            Gets or sets a value indicating whether the New Folder button appears in the folder browser dialog box. This
            property has no effect if the Vista style dialog is used; in that case, the New Folder button is always shown.
            </summary>
            <value>
            <see langword="true" /> if the New Folder button is shown in the dialog box; otherwise, <see langword="false" />. The default is <see langword="true" />.
            </value>
        </member>
        <member name="P:Ookii.Dialogs.VistaFolderBrowserDialog.UseDescriptionForTitle">
            <summary>
            Gets or sets a value that indicates whether to use the value of the <see cref="P:Ookii.Dialogs.VistaFolderBrowserDialog.Description"/> property
            as the dialog title for Vista style dialogs. This property has no effect on old style dialogs.
            </summary>
            <value><see langword="true"/> to indicate that the value of the <see cref="P:Ookii.Dialogs.VistaFolderBrowserDialog.Description"/> property is used as dialog title; <see langword="false"/>
            to indicate the value is added as additional text to the dialog. The default is <see langword="false"/>.</value>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialogButtonStyle">
            <summary>
            Indicates the display style of custom buttons on a task dialog.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogButtonStyle.Standard">
            <summary>
            Custom buttons are displayed as regular buttons.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogButtonStyle.CommandLinks">
            <summary>
            Custom buttons are displayed as command links using a standard task dialog glyph.
            </summary>
        </member>
        <member name="F:Ookii.Dialogs.TaskDialogButtonStyle.CommandLinksNoIcon">
            <summary>
            Custom buttons are displayed as command links without a glyph.
            </summary>
        </member>
        <member name="T:Ookii.Dialogs.TaskDialogRadioButton">
            <summary>
            A radio button on a task dialog.
            </summary>
            <threadsafety static="true" instance="false" />
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogRadioButton.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogRadioButton"/> class.
            </summary>
        </member>
        <member name="M:Ookii.Dialogs.TaskDialogRadioButton.#ctor(System.ComponentModel.IContainer)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.TaskDialogRadioButton"/> class with the specified container.
            </summary>
            <param name="container">The <see cref="T:System.ComponentModel.IContainer"/> to add the <see cref="T:Ookii.Dialogs.TaskDialogRadioButton"/> to.</param>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogRadioButton.Checked">
            <summary>
            Gets or sets a value that indicates whether the radio button is checked.
            </summary>
            <value>
            <see langword="true"/> if the radio button is checked; otherwise, <see langword="false"/>.
            The default value is <see langword="false"/>.
            </value>
            <remarks>
            Setting this property while the dialog is being displayed has no effect. Instead, use the <see cref="M:Ookii.Dialogs.TaskDialogItem.Click"/>
            method to check a particular radio button.
            </remarks>
        </member>
        <member name="P:Ookii.Dialogs.TaskDialogRadioButton.ItemCollection">
            <summary>
            Gets the collection that items of this type are part of.
            </summary>
            <value>
            If the <see cref="T:Ookii.Dialogs.TaskDialogButton"/> is currently associated with a <see cref="T:Ookii.Dialogs.TaskDialog"/>, the
            <see cref="P:Ookii.Dialogs.TaskDialog.Buttons"/> collection of that <see cref="T:Ookii.Dialogs.TaskDialog"/>; otherwise, <see langword="null"/>.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.HyperlinkClickedEventArgs">
            <summary>
            Class that provides data for the <see cref="E:Ookii.Dialogs.TaskDialog.HyperlinkClicked"/> event.
            </summary>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.HyperlinkClickedEventArgs.#ctor(System.String)">
            <summary>
            Creates a new instance of the <see cref="T:Ookii.Dialogs.HyperlinkClickedEventArgs"/> class with the specified URL.
            </summary>
            <param name="href">The URL of the hyperlink.</param>
        </member>
        <member name="P:Ookii.Dialogs.HyperlinkClickedEventArgs.Href">
            <summary>
            Gets the URL of the hyperlink that was clicked.
            </summary>
            <value>
            The value of the href attribute of the hyperlink.
            </value>
        </member>
        <member name="T:Ookii.Dialogs.ExpandButtonClickedEventArgs">
            <summary>
            Provides data for the <see cref="E:Ookii.Dialogs.TaskDialog.ExpandButtonClicked"/> event.
            </summary>
            <threadsafety instance="false" static="true"/>
        </member>
        <member name="M:Ookii.Dialogs.ExpandButtonClickedEventArgs.#ctor(System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Ookii.Dialogs.ExpandButtonClickedEventArgs"/> class with the specified expanded state.
            </summary>
            <param name="expanded"><see langword="true"/> if the the expanded content on the dialog is shown; otherwise, <see langword="false"/>.</param>
        </member>
        <member name="P:Ookii.Dialogs.ExpandButtonClickedEventArgs.Expanded">
            <summary>
            Gets a value that indicates if the expanded content on the dialog is shown.
            </summary>
            <value><see langword="true" /> if the expanded content on the dialog is shown; otherwise, <see langword="false" />.</value>
        </member>
    </members>
</doc>