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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="Wizard" FullName="System.Web.UI.WebControls.Wizard">
<TypeSignature Language="C#" Value="public class Wizard : System.Web.UI.WebControls.CompositeControl" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.WebControls.CompositeControl</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.ToolboxData("<{0}:Wizard runat="server"> <WizardSteps> <asp:WizardStep title="Step 1" runat="server"></asp:WizardStep> <asp:WizardStep title="Step 2" runat="server"></asp:WizardStep> </WizardSteps> </{0}:Wizard>")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Designer("System.Web.UI.Design.WebControls.WizardDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Bindable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultEvent("FinishButtonClick")</AttributeName>
</Attribute>
</Attributes>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In this topic:</para>
<list type="bullet">
<item>
<para>
<format type="text/html">
<a href="#introduction">Introduction</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#components">Wizard Components</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#wizard_steps">Wizard Steps</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#collecting_wizard_data">Collecting Wizard Data</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#wizard_command_names">Wizard Command Names</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#dynamically_changing_steps">Dynamically Changing Steps</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#wizard_appearance">Wizard Appearance</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#formatting_using_layout_templates">Formatting Using Layout Templates</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#accessibility">Accessibility</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#declarative_syntax">Declarative Syntax</a>
</format>
</para>
</item>
</list>
<format type="text/html">
<a href="#introduction" />
</format>
<format type="text/html">
<h2>Introduction</h2>
</format>
<para>You can use the <see cref="T:System.Web.UI.WebControls.Wizard" /> control to: </para>
<list type="bullet">
<item>
<para>Collect related data across multiple steps. </para>
</item>
<item>
<para>Break up a larger Web page used to collect user input into smaller logical steps.</para>
</item>
<item>
<para>Allow for either linear or nonlinear navigation through the steps.</para>
</item>
</list>
<format type="text/html">
<a href="#components" />
</format>
<format type="text/html">
<h2>Wizard Components</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.Wizard" /> control is made up of the following components:</para>
<list type="bullet">
<item>
<para>A <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection of steps that contain the user interface for each step, as defined by the page developer.</para>
</item>
<item>
<para>Built-in navigation capabilities that determine the appropriate buttons to display based on the <see cref="P:System.Web.UI.WebControls.WizardStepBase.StepType" /> value.</para>
</item>
<item>
<para>A header area that can be customized to display information specific to the step that the user is currently on.</para>
</item>
<item>
<para>A sidebar area that can be used to quickly navigate to steps in the control.</para>
<block subset="none" type="note">
<para>If you are using Microsoft Visual Studio 2005, note that the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> is persisted in Source view. If you change the <see cref="P:System.Web.UI.WebControls.Wizard.WizardSteps" /> property in Design view by clicking the sidebar buttons, and you then run the page, the first step of the Wizard control might not be shown because the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> might be pointing to a different step.</para>
</block>
</item>
</list>
<format type="text/html">
<a href="#wizard_steps" />
</format>
<format type="text/html">
<h2>Wizard Steps</h2>
</format>
<para>Each of the steps in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control has a <see cref="P:System.Web.UI.WebControls.WizardStepBase.StepType" /> property that determines the kind of navigation functionality that the step has. If you do not specify a value for the <see cref="P:System.Web.UI.WebControls.WizardStepBase.StepType" /> property, the default value is <see cref="F:System.Web.UI.WebControls.WizardStepType.Auto" />. The following table lists the available settings for the <see cref="P:System.Web.UI.WebControls.WizardStepBase.StepType" /> property and the resulting behavior of the step.</para>
<list type="table">
<item>
<term>WizardStepType.Auto</term>
<description>
<para>The navigation UI that is rendered for the step is determined by the order in which the step is declared.</para>
</description>
</item>
<item>
<term>WizardStepType.Complete</term>
<description>
<para>The step is the last one to appear. No navigation buttons are rendered.</para>
</description>
</item>
<item>
<term>WizardStepType.Finish</term>
<description>
<para>The step is the last one that collects user data. The <ui>Finish</ui> button is rendered for navigation.</para>
</description>
</item>
<item>
<term>WizardStepType.Start</term>
<description>
<para>The step is the first one to appear. A <ui>Previous</ui> button is not rendered.</para>
</description>
</item>
<item>
<term>WizardStepType.Step</term>
<description>
<para>The step is any step between the first and last. <ui>Previous</ui> and <ui>Next</ui> buttons are rendered for navigation.</para>
</description>
</item>
</list>
<format type="text/html">
<a href="#collecting_wizard_data" />
</format>
<format type="text/html">
<h2>Collecting Wizard Data</h2>
</format>
<para>Using the <see cref="T:System.Web.UI.WebControls.Wizard" /> control, data can be collected through linear or nonlinear navigation. Some examples of nonlinear navigation are skipping unnecessary steps or returning to a previously completed step to change some value. The <see cref="T:System.Web.UI.WebControls.Wizard" /> control maintains its state between steps, so the data entered on a step does not need to be persisted to a data store until all the steps of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control have been completed.</para>
<para>Alternatively, if you want to persist the collected data to a data store as each step is completed, such as when the <see cref="E:System.Web.UI.WebControls.Wizard.NextButtonClick" /> event is raised, you should set the <see cref="P:System.Web.UI.WebControls.WizardStepBase.AllowReturn" /> property of the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object to false so that the user cannot return to a previously completed step and change the data once it has been submitted.</para>
<format type="text/html">
<a href="#wizard_command_names" />
</format>
<format type="text/html">
<h2>Wizard Command Names</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.Wizard" /> control inherits the following command names from the <see cref="T:System.Web.UI.WebControls.View" /> class and <see cref="T:System.Web.UI.WebControls.MultiView" /> class: <see cref="F:System.Web.UI.WebControls.MultiView.NextViewCommandName" />, <see cref="F:System.Web.UI.WebControls.MultiView.PreviousViewCommandName" />, <see cref="F:System.Web.UI.WebControls.MultiView.SwitchViewByIDCommandName" />, and <see cref="F:System.Web.UI.WebControls.MultiView.SwitchViewByIndexCommandName" />. The Wizard control ignores these command names and does not include any special logic to enable these commands to automatically work for navigation. If a command name is removed or is missing from a button in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control, no exception is thrown. For example, if the <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> button is missing a value for <see cref="P:System.Web.UI.WebControls.Button.CommandName" />, no exception is thrown.</para>
<format type="text/html">
<a href="#dynamically_changing_steps" />
</format>
<format type="text/html">
<h2>Dynamically Changing Steps</h2>
</format>
<para>You can use the <see cref="M:System.Web.UI.WebControls.Wizard.MoveTo(System.Web.UI.WebControls.WizardStepBase)" /> method or the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> property to dynamically change the step that is currently displayed in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<block subset="none" type="note">
<para>If you programmatically add a <see cref="T:System.Web.UI.WebControls.WizardStep" /> in the Page_Load event handler, you must add the navigation to that step prior to the page loading.</para>
</block>
<format type="text/html">
<a href="#wizard_appearance" />
</format>
<format type="text/html">
<h2>Wizard Appearance</h2>
</format>
<para>The appearance of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control is fully customizable through templates, skins, and style settings. For example, you can use the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" />, <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" />, <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" />, <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" />, and <see cref="P:System.Web.UI.WebControls.Wizard.StepNavigationTemplate" /> properties to customize the interface of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<block subset="none" type="note">
<para>Setting the <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" />, <see cref="P:System.Web.UI.WebControls.Wizard.DisplaySideBar" />, <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" />, <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" />, <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" />, or <see cref="P:System.Web.UI.WebControls.Wizard.StepNavigationTemplate" /> property recreates the child controls of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. As a result, the view state for the child controls is lost in the process. To avoid this situation, explicitly maintain the control state of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control's child controls explicitly, or avoid putting controls inside of templates.</para>
</block>
<para>Note that the <see cref="T:System.Web.UI.WebControls.Wizard" /> control does not support special Microsoft Internet Explorer rendering for non-standard or quirks mode. To get the best Internet Explorer rendering using the <see cref="T:System.Web.UI.WebControls.Wizard" /> control, use the XHTML doc type, which is added by default in Visual Web Developer and Visual Studio.</para>
<format type="text/html">
<a href="#formatting_using_layout_templates" />
</format>
<format type="text/html">
<h2>Formatting Using Layout Templates</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.Wizard" /> control lets you specify the layout of the control without requiring you to use an HTML table element. Instead, you can use a LayoutTemplate element to specify the layout. In the template, you create placeholder controls to indicate where items should be dynamically inserted into the control. (This is similar to how the template model for the <see cref="T:System.Web.UI.WebControls.ListView" /> control works.) For more information, see the <see cref="P:System.Web.UI.WebControls.Wizard.LayoutTemplate" /> property.</para>
<format type="text/html">
<a href="#accessibility" />
</format>
<format type="text/html">
<h2>Accessibility</h2>
</format>
<para>For information about how to configure this control so that it generates markup that conforms to accessibility standards, see <format type="text/html"><a href="7e3ce9c4-6b7d-4fb1-94b5-72cf2a44fe13">Accessibility in Visual Studio 2010 and ASP.NET 4</a></format> and <format type="text/html"><a href="847a37e3-ce20-41da-b0d3-7dfb0fdae9a0">ASP.NET Controls and Accessibility</a></format>.</para>
<format type="text/html">
<a href="#declarative_syntax" />
</format>
<format type="text/html">
<h2>Declarative Syntax</h2>
</format>
<code><asp:Wizard
    AccessKey="string"
    ActiveStepIndex="integer"
    BackColor="color name|#dddddd"
    BorderColor="color name|#dddddd"
    BorderStyle="<codeFeaturedElement>NotSet</codeFeaturedElement>|None|Dotted|Dashed|Solid|Double|Groove|Ridge|
Inset|Outset"
    BorderWidth="size"
    CancelButtonImageUrl="uri"
    CancelButtonText="string"
    CancelButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    CancelDestinationPageUrl="uri"
    CellPadding="integer"
    CellSpacing="integer"
    CssClass="string"
    DisplayCancelButton="True|<codeFeaturedElement>False</codeFeaturedElement>"
    DisplaySideBar="<codeFeaturedElement>True</codeFeaturedElement>|False"
    Enabled="<codeFeaturedElement>True</codeFeaturedElement>|False"
    EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
    EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
    FinishCompleteButtonImageUrl="uri"
    FinishCompleteButtonText="string"
    FinishCompleteButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    FinishDestinationPageUrl="uri"
    FinishPreviousButtonImageUrl="uri"
    FinishPreviousButtonText="string"
    FinishPreviousButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    Font-Bold="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Italic="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Names="string"
    Font-Overline="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Size="string|Smaller|Larger|XX-Small|X-Small|Small|Medium|
Large|X-Large|XX-Large"
    Font-Strikeout="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Underline="True|<codeFeaturedElement>False</codeFeaturedElement>"
    ForeColor="color name|#dddddd"
    HeaderText="string"
    Height="size"
    ID="string"
    OnActiveStepChanged="ActiveStepChanged event handler"
    OnCancelButtonClick="CancelButtonClick event handler"
    OnDataBinding="DataBinding event handler"
    OnDisposed="Disposed event handler"
    OnFinishButtonClick="FinishButtonClick event handler"
    OnInit="Init event handler"
    OnLoad="Load event handler"
    OnNextButtonClick="NextButtonClick event handler"
    OnPreRender="PreRender event handler"
    OnPreviousButtonClick="PreviousButtonClick event handler"
    OnSideBarButtonClick="SideBarButtonClick event handler"
    OnUnload="Unload event handler"
    runat="server"
    SkinID="string"
    SkipLinkText="string"
    StartNextButtonImageUrl="uri"
    StartNextButtonText="string"
    StartNextButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    StepNextButtonImageUrl="uri"
    StepNextButtonText="string"
    StepNextButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    StepPreviousButtonImageUrl="uri"
    StepPreviousButtonText="string"
    StepPreviousButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    Style="string"
    TabIndex="integer"
    ToolTip="string"
    Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
    Width="size"
>
        <CancelButtonStyle />
        <FinishCompleteButtonStyle />
        <FinishNavigationTemplate>
<!-- child controls -->
        </FinishNavigationTemplate>
        <FinishPreviousButtonStyle />
        <HeaderStyle />
        <HeaderTemplate>
<!-- child controls -->
        </HeaderTemplate>
        <NavigationButtonStyle />
        <NavigationStyle />
        <SideBarButtonStyle />
        <SideBarStyle />
        <SideBarTemplate>
<!-- child controls -->
        </SideBarTemplate>
        <StartNavigationTemplate>
<!-- child controls -->
        </StartNavigationTemplate>
        <StartNextButtonStyle />
        <StepNavigationTemplate>
<!-- child controls -->
        </StepNavigationTemplate>
        <StepNextButtonStyle />
        <StepPreviousButtonStyle />
        <StepStyle />
        <WizardSteps>
                <asp:TemplatedWizardStep
                    AllowReturn="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    ContentTemplateContainer="string"
                    EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    ID="string"
                    OnActivate="Activate event handler"
                    OnDataBinding="DataBinding event handler"
                    OnDeactivate="Deactivate event handler"
                    OnDisposed="Disposed event handler"
                    OnInit="Init event handler"
                    OnLoad="Load event handler"
                    OnPreRender="PreRender event handler"
                    OnUnload="Unload event handler"
                    runat="server"
                    SkinID="string"
                    StepType="<codeFeaturedElement>Auto</codeFeaturedElement>|Complete|Finish|Start|Step"
                    Title="string"
                    Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
>
                        <ContentTemplate>
<!-- child controls -->
                        </ContentTemplate>
                        <CustomNavigationTemplate>
<!-- child controls -->
                        </CustomNavigationTemplate>
                </asp:TemplatedWizardStep>
                <asp:WizardStep
                    AllowReturn="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    ID="string"
                    OnActivate="Activate event handler"
                    OnDataBinding="DataBinding event handler"
                    OnDeactivate="Deactivate event handler"
                    OnDisposed="Disposed event handler"
                    OnInit="Init event handler"
                    OnLoad="Load event handler"
                    OnPreRender="PreRender event handler"
                    OnUnload="Unload event handler"
                    runat="server"
                    SkinID="string"
                    StepType="<codeFeaturedElement>Auto</codeFeaturedElement>|Complete|Finish|Start|Step"
                    Title="string"
                    Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
                />
        </WizardSteps>
</asp:Wizard></code>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Provides navigation and a user interface (UI) to collect related data across multiple steps.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Wizard ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Web.UI.WebControls.Wizard.#ctor" /> constructor to create and initialize a new instance of the <see cref="T:System.Web.UI.WebControls.Wizard" /> class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.Wizard" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ActiveStep">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.WizardStepBase ActiveStep { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardStepBase</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property returns the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object that is currently displayed in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property is read-only; however, you can use the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property to access the properties of the current <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object. Use the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> property to dynamically change the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> to a different <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object. Alternatively, you can use the <see cref="M:System.Web.UI.WebControls.Wizard.MoveTo(System.Web.UI.WebControls.WizardStepBase)" /> method to dynamically set the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the step in the <see cref="P:System.Web.UI.WebControls.Wizard.WizardSteps" /> collection that is currently displayed to the user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ActiveStepChanged">
<MemberSignature Language="C#" Value="public event EventHandler ActiveStepChanged;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.EventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.ActiveStepChanged" /> event is raised when the current step that is displayed in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control changes. Use the <see cref="E:System.Web.UI.WebControls.Wizard.ActiveStepChanged" /> event to provide additional processing when the current step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control changes.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the user switches to a new step in the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ActiveStepIndex">
<MemberSignature Language="C#" Value="public virtual int ActiveStepIndex { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(-1)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> property provides the zero-based index of the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object that is currently displayed in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. You can programmatically set the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> property to control which step is displayed to the user at run time.</para>
<block subset="none" type="note">
<para>If you are using Microsoft Visual Studio 2005, note that the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> is persisted in Source view. If you change the <see cref="P:System.Web.UI.WebControls.Wizard.WizardSteps" /> property in Design view by clicking the sidebar buttons, and you then run the page, the first step of the Wizard control might not be shown because the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> might be pointing to a different step.</para>
</block>
<para>If you set the value of <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> to -1 to support a wizard with no steps by default, the following behavior occurs:</para>
<list type="bullet">
<item>
<para>If you declaratively set <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> to -1 or set it to -1 as a default value, the control will always try to render the first step in the wizard.</para>
</item>
<item>
<para>If you programmatically set <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> to -1, the control will not render.</para>
</item>
</list>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the index of the current <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AllowNavigationToStep">
<MemberSignature Language="C#" Value="protected virtual bool AllowNavigationToStep (int index);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.AllowNavigationToStep(System.Int32)" /> method can be accessed from a derived class only because of its protected modifier. In a derived class, you can use the <see cref="M:System.Web.UI.WebControls.Wizard.AllowNavigationToStep(System.Int32)" /> method to determine whether the index that is passed in can be used to set the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> property. The <see cref="M:System.Web.UI.WebControls.Wizard.AllowNavigationToStep(System.Int32)" /> method will return false if the index that is passed in refers to a <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object that has already been accessed and has its <see cref="P:System.Web.UI.WebControls.WizardStepBase.AllowReturn" /> property set to false; otherwise, it will return true.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Uses a Boolean value to determine whether the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property can be set to the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object that corresponds to the index that is passed in.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>false if the index passed in refers to a <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> that has already been accessed and its <see cref="P:System.Web.UI.WebControls.WizardStepBase.AllowReturn" /> property is set to false; otherwise, true.</para>
</returns>
<param name="index">
<attribution license="cc4" from="Microsoft" modified="false" />The index of the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object being checked.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelButtonClick">
<MemberSignature Language="C#" Value="public event EventHandler CancelButtonClick;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.EventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.CancelButtonClick" /> event is raised when the <ui>Cancel</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control is clicked. Use the <see cref="E:System.Web.UI.WebControls.Wizard.CancelButtonClick" /> event to provide additional processing when the <ui>Cancel</ui> button is clicked.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the <ui>Cancel</ui> button is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelButtonID">
<MemberSignature Language="C#" Value="protected static readonly string CancelButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.CancelButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.CancelButtonID" /> is "CancelButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies the identifier for the <ui>Cancel</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string CancelButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonType" /> property is set to <see cref="F:System.Web.UI.WebControls.ButtonType.Image" />, use the <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonImageUrl" /> property to specify the image to display for the <ui>Cancel</ui> button.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the image displayed for the <ui>Cancel</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style CancelButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonStyle" /> property defines the appearance for the <ui>Cancel</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonStyle" /> property are merged with the style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property. Any setting that is applied in the <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonStyle" /> property overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of style properties that define the appearance of the <ui>Cancel</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelButtonText">
<MemberSignature Language="C#" Value="public virtual string CancelButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonText" /> property contains the text that is displayed for the <ui>Cancel</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Depending on the value of the <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image, or as the text of a link. The following table lists the <see cref="P:System.Web.UI.WebControls.Wizard.CancelButtonType" /> values and their respective effects on the <ui>Cancel</ui> button text.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as a link.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption that is displayed for the <ui>Cancel</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType CancelButtonType { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.ButtonType.Button)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button that is rendered as the <ui>Cancel</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelCommandName">
<MemberSignature Language="C#" Value="public static readonly string CancelCommandName;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.CancelCommandName" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.CancelCommandName" /> is "Cancel".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the command name for the <ui>Cancel</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CancelDestinationPageUrl">
<MemberSignature Language="C#" Value="public virtual string CancelDestinationPageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.UrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.CancelDestinationPageUrl" /> property specifies the step that is displayed when the user clicks the <ui>Cancel</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. If the <see cref="P:System.Web.UI.WebControls.Wizard.DisplayCancelButton" /> property is set to true and the <see cref="P:System.Web.UI.WebControls.Wizard.CancelDestinationPageUrl" /> property is not set, the Web page is refreshed and the <see cref="M:System.Web.UI.WebControls.Wizard.OnCancelButtonClick(System.EventArgs)" /> event is raised.</para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL that the user is directed to when they click the <ui>Cancel</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CellPadding">
<MemberSignature Language="C#" Value="public virtual int CellPadding { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(0)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.CellPadding" /> property to control the spacing between the contents of a cell and the cell border. The padding amount that is specified is added to all four sides of the cell. All cells in a column share the same cell width; therefore, the spacing is applied to the widest cell in the column. Similarly, all cells in the same row share the same cell height. Thus, the spacing is applied to the tallest cell in the row. Individual cell sizes cannot be specified.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the amount of space between the contents of the cell and the cell border.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CellSpacing">
<MemberSignature Language="C#" Value="public virtual int CellSpacing { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(0)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.CellSpacing" /> property to control the spacing between adjacent cells in a Wizard control. This spacing is applied both vertically and horizontally.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the amount of space between cells.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateChildControls">
<MemberSignature Language="C#" Value="protected override void CreateChildControls ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates child controls.</para>
</summary>
</Docs>
</Member>
<Member MemberName="CreateControlCollection">
<MemberSignature Language="C#" Value="protected override System.Web.UI.ControlCollection CreateControlCollection ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.ControlCollection</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates control collection.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateControlHierarchy">
<MemberSignature Language="C#" Value="protected virtual void CreateControlHierarchy ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates the hierarchy of child controls that make up the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateControlStyle">
<MemberSignature Language="C#" Value="protected override System.Web.UI.WebControls.Style CreateControlStyle ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates control style.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CustomFinishButtonID">
<MemberSignature Language="C#" Value="protected static readonly string CustomFinishButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.CustomFinishButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.CustomFinishButtonID" /> is "CustomFinishButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier for a custom <ui>Finish</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CustomNextButtonID">
<MemberSignature Language="C#" Value="protected static readonly string CustomNextButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.CustomNextButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.CustomNextButtonID" /> is "CustomNextButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier for a custom <ui>Next</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CustomPreviousButtonID">
<MemberSignature Language="C#" Value="protected static readonly string CustomPreviousButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.CustomPreviousButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.CustomPreviousButtonID" /> is "CustomPreviousButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier for a custom <ui>Previous</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DataListID">
<MemberSignature Language="C#" Value="protected static readonly string DataListID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.DataListID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.DataListID" /> is "SideBarList".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier for the sidebar <see cref="T:System.Web.UI.WebControls.DataList" /> collection. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DisplayCancelButton">
<MemberSignature Language="C#" Value="public virtual bool DisplayCancelButton { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a Boolean value indicating whether to display a <ui>Cancel</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DisplaySideBar">
<MemberSignature Language="C#" Value="public virtual bool DisplaySideBar { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>There can be a difference in the rendering of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control depending on whether this property is set to true or false. When this property value is set to true and the sidebar is displayed, cell spacing is not applied to the HeadCell, StepCell, or NavigationCell elements of the control's table. When this value is false, cell spacing is applied. This may affect how the control is rendered.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a Boolean value indicating whether to display the sidebar area on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishButtonClick">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.WizardNavigationEventHandler FinishButtonClick;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardNavigationEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.FinishButtonClick" /> event is raised when the <ui>Finish</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control is clicked. Use the <see cref="E:System.Web.UI.WebControls.Wizard.FinishButtonClick" /> event to provide additional processing when the <ui>Finish</ui> button is clicked.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the <ui>Finish</ui> button is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishButtonID">
<MemberSignature Language="C#" Value="protected static readonly string FinishButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.FinishButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.FinishButtonID" /> is "FinishButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier for the <ui>Finish</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishCompleteButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string FinishCompleteButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonType" /> property is set to the <see cref="F:System.Web.UI.WebControls.ButtonType.Image" /> field, use the <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonImageUrl" /> property to specify the image to display for the <ui>Finish</ui> button.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the image that is displayed for the <ui>Finish</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishCompleteButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style FinishCompleteButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonStyle" /> property defines the appearance for the <ui>Finish</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonStyle" /> property are merged with the style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property. Any setting that is applied in the <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonStyle" /> property overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the <ui>Finish</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishCompleteButtonText">
<MemberSignature Language="C#" Value="public virtual string FinishCompleteButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonText" /> property contains the text that is displayed for the <ui>Finish</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Depending on the value of the <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image in browsers that do not render images, or as the text of a link. The following table lists the field values for the <see cref="P:System.Web.UI.WebControls.Wizard.FinishCompleteButtonType" /> property and the respective effect of each on the <ui>Finish</ui> button text.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as link text.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption that is displayed for the <ui>Finish</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishCompleteButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType FinishCompleteButtonType { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.ButtonType.Button)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button that is rendered as the <ui>Finish</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishDestinationPageUrl">
<MemberSignature Language="C#" Value="public virtual string FinishDestinationPageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.UrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.FinishDestinationPageUrl" /> property specifies the step that is displayed when the user clicks the <ui>Finish</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL that the user is redirected to when they click the <ui>Finish</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishNavigationTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate FinishNavigationTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard), System.ComponentModel.BindingDirection.OneWay)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" /> property to specify the custom content that is displayed for the navigation area on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Define the content by creating a template that specifies how the navigation area is rendered on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step.</para>
<para>The custom content for the template is contained within the <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" /> object. You can add custom content to the <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" /> object either by using template-editing mode in design view or by defining the <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" /> object inline using FinishNavigationTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).</para>
<block subset="none" type="note">
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" /> object that is contained in the <see cref="P:System.Web.UI.WebControls.Wizard.FinishNavigationTemplate" /> property must contain two <see cref="T:System.Web.UI.WebControls.IButtonControl" /> controls, one with its <see cref="P:System.Web.UI.WebControls.IButtonControl.CommandName" /> property set to "MoveComplete" and the other with its <see cref="P:System.Web.UI.WebControls.IButtonControl.CommandName" /> property set to "MovePrevious", to enable the navigation feature.</para>
</block>
<para>To access a control that is defined in a template programmatically, use the <see cref="P:System.Web.UI.WebControls.CompositeControl.Controls" /> collection of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object. You can also use the <see cref="Overload:System.Web.UI.Control.FindControl" /> method of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object to find the control, if the control has an <see cref="P:System.Web.UI.Control.ID" /> property specified.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template that is used to display the navigation area on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishPreviousButtonID">
<MemberSignature Language="C#" Value="protected static readonly string FinishPreviousButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.FinishPreviousButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.FinishPreviousButtonID" /> "FinishPreviousButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier for the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishPreviousButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string FinishPreviousButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonType" /> property is set to the <see cref="F:System.Web.UI.WebControls.ButtonType.Image" /> field, use the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonImageUrl" /> property to specify the image to display for the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the image that is displayed for the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishPreviousButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style FinishPreviousButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonStyle" /> property defines the appearance for the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonStyle" /> property are merged with the style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property. Any setting that is applied in the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonStyle" /> property overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishPreviousButtonText">
<MemberSignature Language="C#" Value="public virtual string FinishPreviousButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonText" /> property contains the text that is displayed for the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Depending on the value of the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image in browsers that do not render images, or as the text of a link. The following table lists the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonType" /> property field values and the respective effects on the <ui>Previous</ui> button text.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as a link.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption that is displayed for the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FinishPreviousButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType FinishPreviousButtonType { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.ButtonType.Button)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button that is rendered as the <ui>Previous</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetDesignModeState">
<MemberSignature Language="C#" Value="protected override System.Collections.IDictionary GetDesignModeState ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.IDictionary</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the design mode state.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetHistory">
<MemberSignature Language="C#" Value="public System.Collections.ICollection GetHistory ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.ICollection</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.GetHistory" /> method returns a collection containing the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that have been accessed. The <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects are arranged in the order in which they were accessed: the first item in the collection is the previous <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object, the second item in the collection is the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object that was accessed before the previous step, and so on.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns a collection of <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that have been accessed.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An <see cref="T:System.Collections.ICollection" /> containing the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that have been accessed.</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetStepType">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.WizardStepType GetStepType (System.Web.UI.WebControls.WizardStepBase wizardStep, int index);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardStepType</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Web.UI.WebControls.Wizard.GetStepType(System.Web.UI.WebControls.WizardStepBase,System.Int32)" /> method to determine the <see cref="T:System.Web.UI.WebControls.WizardStepType" /> value of the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns the <see cref="T:System.Web.UI.WebControls.WizardStepType" /> value for the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> object.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>One of the <see cref="T:System.Web.UI.WebControls.WizardStepType" /> values.</para>
</returns>
<param name="wizardStep">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> for which the associated <see cref="T:System.Web.UI.WebControls.WizardStepType" /> is returned.</param>
<param name="index">
<attribution license="cc4" from="Microsoft" modified="false" />The index of the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> for which the associated <see cref="T:System.Web.UI.WebControls.WizardStepType" /> is returned.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HeaderStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle HeaderStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.HeaderStyle" /> property defines the appearance for the header area on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.HeaderStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the header area on the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HeaderTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate HeaderTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard), System.ComponentModel.BindingDirection.OneWay)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" /> property to specify the custom content that is displayed for the header area on a <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Define the content by creating a template that specifies how the header area is rendered.</para>
<para>The custom content for the template is contained within the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" /> object. You can add custom content to the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" /> object either by using template-editing mode in design view or by defining the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" /> object inline using HeaderTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).</para>
<para>To access a control that is defined in a template programmatically, use the <see cref="P:System.Web.UI.WebControls.CompositeControl.Controls" /> collection of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object. You can also use the <see cref="Overload:System.Web.UI.Control.FindControl" /> method of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object to find the control, if the control has an <see cref="P:System.Web.UI.Control.ID" /> property specified.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template that is used to display the header area on the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HeaderText">
<MemberSignature Language="C#" Value="public virtual string HeaderText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.HeaderText" /> property defines the text caption that is displayed for the header area on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<para>To control the style of the header area, use the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderStyle" /> property. Alternatively, you can define your own custom UI for the header row by setting the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" /> property instead of the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderText" /> property.</para>
<block subset="none" type="note">
<para>If both the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderText" /> and <see cref="P:System.Web.UI.WebControls.Wizard.HeaderTemplate" /> properties are defined, the <see cref="P:System.Web.UI.WebControls.Wizard.HeaderText" /> property has no effect.</para>
</block>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption that is displayed for the header area on the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="LoadControlState">
<MemberSignature Language="C#" Value="protected override void LoadControlState (object ob);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ob" Type="System.Object" />
</Parameters>
<Docs>
<param name="ob">To be added.</param>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Restores control state information.</para>
</summary>
</Docs>
</Member>
<Member MemberName="LoadViewState">
<MemberSignature Language="C#" Value="protected override void LoadViewState (object savedState);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="savedState" Type="System.Object" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Loads view-state information.</para>
</summary>
<param name="savedState">
<attribution license="cc4" from="Microsoft" modified="false" />The control state to be restored.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveCompleteCommandName">
<MemberSignature Language="C#" Value="public static readonly string MoveCompleteCommandName;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.MoveCompleteCommandName" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.MoveCompleteCommandName" /> is "MoveComplete". </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the command name that is associated with the <ui>Finish</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveNextCommandName">
<MemberSignature Language="C#" Value="public static readonly string MoveNextCommandName;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.MoveNextCommandName" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.MoveNextCommandName" /> is "MoveNext".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the command name that is associated with the <ui>Next</ui> button. This field is static and read-only.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MovePreviousCommandName">
<MemberSignature Language="C#" Value="public static readonly string MovePreviousCommandName;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.MovePreviousCommandName" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.MovePreviousCommandName" /> is "MovePrevious".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the command name that is associated with the <ui>Previous</ui> button. This field is static and read-only. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveTo">
<MemberSignature Language="C#" Value="public void MoveTo (System.Web.UI.WebControls.WizardStepBase wizardStep);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Web.UI.WebControls.Wizard.MoveTo(System.Web.UI.WebControls.WizardStepBase)" /> method to control which <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object is set as the value for the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control programmatically. This way, you can change the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property dynamically based on other conditions during run time.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Sets the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object as the value for the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
</summary>
<param name="wizardStep">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to set as the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" />.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToCommandName">
<MemberSignature Language="C#" Value="public static readonly string MoveToCommandName;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.MoveToCommandName" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.MoveToCommandName" /> is "Move".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the command name that is associated with each of the sidebar buttons. This field is static and read-only. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="NavigationButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style NavigationButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property defines the appearance for the buttons in the navigation area on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property are merged with the individual button styles. Any setting that is applied in the individual button style properties overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property. For example, if you set the FinishPreviousButtonStyle.ForeColor property to "red" and the NavigationButtonStyle.ForeColor property to "green", the color for the button will be red because the individual style settings of the <see cref="P:System.Web.UI.WebControls.Wizard.FinishPreviousButtonStyle" /> property override the settings of the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property.</para>
<para>The following <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property styles are overridden by individual button style settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" /> </para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the buttons in the navigation area on the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="NavigationStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle NavigationStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.NavigationStyle" /> property defines the appearance for the navigation area on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.NavigationStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Any settings that are applied in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationStyle" /> property override the corresponding settings in the properties of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.Wizard" /> style properties are overridden by the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" /> </para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the navigation area on the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="NextButtonClick">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.WizardNavigationEventHandler NextButtonClick;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardNavigationEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.NextButtonClick" /> event is raised when the <ui>Next</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control is clicked. Use the <see cref="E:System.Web.UI.WebControls.Wizard.NextButtonClick" /> event to provide additional processing when the <ui>Next</ui> button is clicked.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the <ui>Next</ui> button is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnActiveStepChanged">
<MemberSignature Language="C#" Value="protected virtual void OnActiveStepChanged (object source, EventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Object" />
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.OnActiveStepChanged(System.Object,System.EventArgs)" /> method raises the <see cref="E:System.Web.UI.WebControls.Wizard.ActiveStepChanged" /> event when the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStep" /> property of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control is changed. Use the <see cref="E:System.Web.UI.WebControls.Wizard.ActiveStepChanged" /> event to provide additional processing when the current step that is displayed in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control changes.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.OnActiveStepChanged(System.Object,System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.Wizard.ActiveStepChanged" /> event.</para>
</summary>
<param name="source">
<attribution license="cc4" from="Microsoft" modified="false" />The source of the event.</param>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnBubbleEvent">
<MemberSignature Language="C#" Value="protected override bool OnBubbleEvent (object source, EventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Object" />
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines whether the event for the server control is passed up the page’s user interface server control hierarchy.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>true if the event for the server control is passed up the page’s user interface server control hierarchy; otherwise, false.</para>
</returns>
<param name="source">
<attribution license="cc4" from="Microsoft" modified="false" />The source of the event.</param>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />Contains event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnCancelButtonClick">
<MemberSignature Language="C#" Value="protected virtual void OnCancelButtonClick (EventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.CancelButtonClick" /> event is raised when the <ui>Cancel</ui> button is clicked.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.OnCancelButtonClick(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.Wizard.CancelButtonClick" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> containing the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnFinishButtonClick">
<MemberSignature Language="C#" Value="protected virtual void OnFinishButtonClick (System.Web.UI.WebControls.WizardNavigationEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.WizardNavigationEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.FinishButtonClick" /> event is raised when the <ui>Finish</ui> button is clicked.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.OnFinishButtonClick(System.Web.UI.WebControls.WizardNavigationEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.Wizard.FinishButtonClick" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.WizardNavigationEventArgs" /> containing the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnInit">
<MemberSignature Language="C#" Value="protected override void OnInit (EventArgs e);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the Init event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />The raised event.</param>
</Docs>
</Member>
<Member MemberName="OnNextButtonClick">
<MemberSignature Language="C#" Value="protected virtual void OnNextButtonClick (System.Web.UI.WebControls.WizardNavigationEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.WizardNavigationEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.NextButtonClick" /> event is raised when the <ui>Next</ui> button is clicked.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.OnNextButtonClick(System.Web.UI.WebControls.WizardNavigationEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.Wizard.NextButtonClick" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.WizardNavigationEventArgs" /> containing the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnPreviousButtonClick">
<MemberSignature Language="C#" Value="protected virtual void OnPreviousButtonClick (System.Web.UI.WebControls.WizardNavigationEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.WizardNavigationEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.PreviousButtonClick" /> event is raised when the <ui>Previous</ui> button is clicked.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.OnPreviousButtonClick(System.Web.UI.WebControls.WizardNavigationEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.Wizard.PreviousButtonClick" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.WizardNavigationEventArgs" /> containing event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnSideBarButtonClick">
<MemberSignature Language="C#" Value="protected virtual void OnSideBarButtonClick (System.Web.UI.WebControls.WizardNavigationEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.WizardNavigationEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.SideBarButtonClick" /> event is raised when a button on the sidebar area is clicked.</para>
<block subset="none" type="note">
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.SideBarButtonClick" /> event does not raise an event if a <see cref="T:System.Web.UI.WebControls.Button" /> control with the <see cref="P:System.Web.UI.WebControls.Button.CommandName" /> property set to Move is outside of the <see cref="T:System.Web.UI.WebControls.DataList" /> control's sidebar list for the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" /> object.</para>
</block>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.Wizard.OnSideBarButtonClick(System.Web.UI.WebControls.WizardNavigationEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.Wizard.SideBarButtonClick" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.WizardNavigationEventArgs" /> containing event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="PreviousButtonClick">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.WizardNavigationEventHandler PreviousButtonClick;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardNavigationEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.PreviousButtonClick" /> event is raised when the <ui>Previous</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control is clicked. Use the <see cref="E:System.Web.UI.WebControls.Wizard.PreviousButtonClick" /> event to provide additional processing when the <ui>Previous</ui> button is clicked.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the <ui>Previous</ui> button is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RegisterCommandEvents">
<MemberSignature Language="C#" Value="protected void RegisterCommandEvents (System.Web.UI.WebControls.IButtonControl button);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="button" Type="System.Web.UI.WebControls.IButtonControl" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Registers a new instance of the <see cref="T:System.Web.UI.WebControls.CommandEventHandler" /> class for the specified <see cref="T:System.Web.UI.WebControls.IButtonControl" /> object.</para>
</summary>
<param name="button">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.IButtonControl" /> for which the new instance of <see cref="T:System.Web.UI.WebControls.CommandEventHandler" /> is registered.</param>
</Docs>
</Member>
<Member MemberName="Render">
<MemberSignature Language="C#" Value="protected override void Render (System.Web.UI.HtmlTextWriter writer);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="writer" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders the control to the specified writer.</para>
</summary>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />The HTML writer.</param>
</Docs>
</Member>
<Member MemberName="SaveControlState">
<MemberSignature Language="C#" Value="protected override object SaveControlState ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Save the control state.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The control state.</para>
</returns>
</Docs>
</Member>
<Member MemberName="SaveViewState">
<MemberSignature Language="C#" Value="protected override object SaveViewState ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Saves the view state.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The view state.</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SideBarButtonClick">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.WizardNavigationEventHandler SideBarButtonClick;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardNavigationEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.SideBarButtonClick" /> event is raised when a button in the sidebar area on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control is clicked. Use the <see cref="E:System.Web.UI.WebControls.Wizard.SideBarButtonClick" /> event to provide additional processing when a button in the sidebar area is clicked.</para>
<block subset="none" type="note">
<para>The <see cref="E:System.Web.UI.WebControls.Wizard.SideBarButtonClick" /> event does not raise an event if a <see cref="T:System.Web.UI.WebControls.Button" /> control with the <see cref="P:System.Web.UI.WebControls.Button.CommandName" /> property set to Move is outside of the <see cref="T:System.Web.UI.WebControls.DataList" /> control's sidebar list for the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" /> object.</para>
</block>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when a button in the sidebar area is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SideBarButtonID">
<MemberSignature Language="C#" Value="protected static readonly string SideBarButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.SideBarButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.SideBarButtonID" /> is "SideBarButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier that is associated with each of the sidebar buttons. This field is static and read-only. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SideBarButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style SideBarButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.SideBarButtonStyle" /> property defines the appearance of the buttons on the sidebar of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.SideBarButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarButtonStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Any settings that are applied in the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarButtonStyle" /> property override the corresponding settings in the properties of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.Wizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.Wizard.SideBarButtonStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" /> </para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control sidebar, the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarButtonStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the buttons on the sidebar.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SideBarStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle SideBarStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.SideBarStyle" /> property defines the appearance for the sidebar area on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.SideBarStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Any settings that are applied in the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarStyle" /> property override the corresponding settings in the properties of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<block subset="none" type="note">
<para>The height property for <see cref="P:System.Web.UI.WebControls.Wizard.SideBarStyle" /> is ignored if the height is set to less than the height of the wizard. Values set for <see cref="P:System.Web.UI.WebControls.Wizard.NavigationStyle" /> height and <see cref="P:System.Web.UI.WebControls.Wizard.HeaderStyle" /> height add to the total height of the wizard. For example, if the Wizard height is set to 500px and <see cref="P:System.Web.UI.WebControls.Wizard.NavigationStyle" /> height or <see cref="P:System.Web.UI.WebControls.Wizard.HeaderStyle" /> height is set to 50px or 10%, then the total wizard height is 550px.</para>
</block>
<para>The following <see cref="T:System.Web.UI.WebControls.Wizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.Wizard.SideBarStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" /> </para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the sidebar area on the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SideBarTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate SideBarTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard), System.ComponentModel.BindingDirection.OneWay)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" /> property to specify the custom content that is displayed for the sidebar area on a <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Define the content by creating a template that specifies how the sidebar area is rendered.</para>
<para>The custom content for the template is contained within the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" /> object. You can add custom content to the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" /> object either by using template-editing mode in design view or by defining the <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" /> object inline using SideBarTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).</para>
<block subset="none" type="note">
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.SideBarTemplate" /> object must contain a <see cref="T:System.Web.UI.WebControls.DataList" /> control or <see cref="T:System.Web.UI.WebControls.ListView" /> control whose <see cref="P:System.Web.UI.Control.ID" /> property is set to "SideBarList" to enable the sidebar navigation feature. Also, the "SideBarList" on the <see cref="T:System.Web.UI.WebControls.DataList" /> or <see cref="T:System.Web.UI.WebControls.ListView" /> control must contain an <see cref="T:System.Web.UI.WebControls.IButtonControl" /> control.</para>
</block>
<para>To access a control that is defined in a template programmatically, use the <see cref="P:System.Web.UI.WebControls.CompositeControl.Controls" /> collection of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object. You can also use the <see cref="Overload:System.Web.UI.Control.FindControl" /> method of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object to find the control, if the control has an <see cref="P:System.Web.UI.Control.ID" /> property specified.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template that is used to display the sidebar area on the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SkipLinkText">
<MemberSignature Language="C#" Value="public virtual string SkipLinkText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.SkipLinkText" /> property to specify the alternate text for a hidden image that is read by screen readers to provide the ability to skip the content for a sidebar area. The text that you specify provides assistive technology devices with a description of the hidden image that can be used to make the control more accessible.</para>
<block subset="none" type="note">
<para>If the <see cref="P:System.Web.UI.WebControls.Wizard.DisplaySideBar" /> property is set to false, the <see cref="P:System.Web.UI.WebControls.Wizard.SkipLinkText" /> property does not create a hidden image with alternate text.</para>
</block>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value that is used to render alternate text that notifies screen readers to skip the content in the sidebar area.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StartNavigationTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate StartNavigationTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard), System.ComponentModel.BindingDirection.OneWay)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> property to specify the custom content that is displayed for the navigation area on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Define the content by creating a template that specifies how the navigation area is rendered on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step.</para>
<para>The custom content for the template is contained within the <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> object. You can add custom content to the <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> object either by using template-editing mode in design view or by defining the <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> object inline using StartNavigationTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).</para>
<block subset="none" type="note">
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> object that is contained in the <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> property must contain an <see cref="T:System.Web.UI.WebControls.IButtonControl" /> control with the <see cref="P:System.Web.UI.WebControls.IButtonControl.CommandName" /> property set to "MoveNext" to enable the navigation feature.</para>
</block>
<para>To access a control that is defined in a template programmatically, use the <see cref="P:System.Web.UI.WebControls.CompositeControl.Controls" /> collection of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object. You can also use the <see cref="Overload:System.Web.UI.Control.FindControl" /> method of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object to find the control, if the control has an <see cref="P:System.Web.UI.Control.ID" /> property specified.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template that is used to display the navigation area on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StartNextButtonID">
<MemberSignature Language="C#" Value="protected static readonly string StartNextButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.StartNextButtonID" /> is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.StartNextButtonID" /> is "StartNextButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier that is associated with the <ui>Next</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step. This field is static and read-only. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StartNextButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string StartNextButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonType" /> property is set to the <see cref="F:System.Web.UI.WebControls.ButtonType.Image" /> field, use the <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonImageUrl" /> property to specify the image to display for the <ui>Next</ui> button.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the image that is displayed for the <ui>Next</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StartNextButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style StartNextButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonStyle" /> property defines the appearance for the <ui>Next</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonStyle" /> property are merged with the style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property. Any setting that is applied in the <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonStyle" /> property overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the <ui>Next</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StartNextButtonText">
<MemberSignature Language="C#" Value="public virtual string StartNextButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonText" /> property contains the text that is displayed for the <ui>Next</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Depending on the value of the <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image in browsers that do not render images, or as the text of a link. The following table lists the field values for the <see cref="P:System.Web.UI.WebControls.Wizard.StartNextButtonType" /> property and the respective effect of each on the <ui>Next</ui> button text.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as a link.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption that is displayed for the <ui>Next</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StartNextButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType StartNextButtonType { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.ButtonType.Button)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button that is rendered as the <ui>Next</ui> button on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepNavigationTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate StepNavigationTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard), System.ComponentModel.BindingDirection.OneWay)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.Wizard.StartNavigationTemplate" /> property to specify the custom content that is displayed for the navigation area on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Step" /> step of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Define the content by creating a template that specifies how the navigation area is rendered on the <see cref="F:System.Web.UI.WebControls.WizardStepType.Step" /> step.</para>
<para>The custom content for the template is contained within the <see cref="P:System.Web.UI.WebControls.Wizard.StepNavigationTemplate" /> object. You can add custom content to the <see cref="P:System.Web.UI.WebControls.Wizard.StepNavigationTemplate" /> object either by using template-editing mode in design view or by defining the <see cref="P:System.Web.UI.WebControls.Wizard.StepNavigationTemplate" /> object inline using StepNavigationTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).</para>
<block subset="none" type="note">
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StepNavigationTemplate" /> object that is contained in the <see cref="P:System.Web.UI.WebControls.Wizard.StepNavigationTemplate" /> property must contain two <see cref="T:System.Web.UI.WebControls.IButtonControl" /> controls, one with its <see cref="P:System.Web.UI.WebControls.IButtonControl.CommandName" /> property set to "MoveNext" and one with its <see cref="P:System.Web.UI.WebControls.IButtonControl.CommandName" /> property set to "MovePrevious", to enable the navigation feature.</para>
</block>
<para>To access a control that is defined in a template programmatically, use the <see cref="P:System.Web.UI.WebControls.CompositeControl.Controls" /> collection of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object. You can also use the <see cref="Overload:System.Web.UI.Control.FindControl" /> method of the <see cref="T:System.Web.UI.WebControls.Wizard" /> object to find the control, if the control has an <see cref="P:System.Web.UI.Control.ID" /> property specified.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template that is used to display the navigation area on any <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects other than the <see cref="F:System.Web.UI.WebControls.WizardStepType.Start" />, the <see cref="F:System.Web.UI.WebControls.WizardStepType.Finish" />, or <see cref="F:System.Web.UI.WebControls.WizardStepType.Complete" /> step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepNextButtonID">
<MemberSignature Language="C#" Value="protected static readonly string StepNextButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.StepNextButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.StepNextButtonID" /> is "StepNextButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier that is associated with the <ui>Next</ui> button. This field is static and read-only. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepNextButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string StepNextButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonType" /> property is set to the <see cref="F:System.Web.UI.WebControls.ButtonType.Image" /> field, use the <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonImageUrl" /> property to specify the image to display for the <ui>Next</ui> button.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the image that is displayed for the <ui>Next</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepNextButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style StepNextButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonStyle" /> property defines the appearance for the <ui>Next</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonStyle" /> property are merged with the style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property. Any setting that is applied in the <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonStyle" /> property overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to the <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the <ui>Next</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepNextButtonText">
<MemberSignature Language="C#" Value="public virtual string StepNextButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonText" /> property contains the text that is displayed for the <ui>Next</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Depending on the value of the <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image, or as the text of a link. The following table lists the field values for the <see cref="P:System.Web.UI.WebControls.Wizard.StepNextButtonType" /> property and the respective effect of each on the <ui>Next</ui> button text.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as a link.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption that is displayed for the <ui>Next</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepNextButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType StepNextButtonType { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.ButtonType.Button)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button that is rendered as the <ui>Next</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepPreviousButtonID">
<MemberSignature Language="C#" Value="protected static readonly string StepPreviousButtonID;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.Wizard.StepPreviousButtonID" /> field is used primarily by control developers. The value for the <see cref="F:System.Web.UI.WebControls.Wizard.StepPreviousButtonID" /> is "StepPreviousButton".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the identifier that is associated with the <ui>Previous</ui> button. This field is static and read-only. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepPreviousButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string StepPreviousButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonType" /> property is set to the <see cref="F:System.Web.UI.WebControls.ButtonType.Image" /> field, use the <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonImageUrl" /> property to specify the image to display for the <ui>Previous</ui> button.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the image that is displayed for the <ui>Previous</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepPreviousButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style StepPreviousButtonStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonStyle" /> property defines the appearance of the <ui>Previous</ui> button on a <see cref="F:System.Web.UI.WebControls.WizardStepType.Step" /> step for the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonStyle" /> property are merged with the style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property. Any setting that is applied in the <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonStyle" /> property overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the <ui>Previous</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepPreviousButtonText">
<MemberSignature Language="C#" Value="public virtual string StepPreviousButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonText" /> property contains the text that is displayed for the <ui>Previous</ui> button on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Depending on the value of the <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image in browsers that do not render images, or as the text of a link. The following table lists the field values for the <see cref="P:System.Web.UI.WebControls.Wizard.StepPreviousButtonType" /> property and the respective effect of each on the <ui>Previous</ui> button text.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as a link.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption that is displayed for the <ui>Previous</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepPreviousButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType StepPreviousButtonType { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.ButtonType.Button)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button that is rendered as the <ui>Previous</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="StepStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle StepStyle { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.StepStyle" /> property gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the appearance for the <see cref="T:System.Web.UI.WebControls.WizardStep" /> objects on the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. The <see cref="P:System.Web.UI.WebControls.Wizard.StepStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.Wizard.StepStyle" /> property are merged with the style settings for the <see cref="P:System.Web.UI.WebControls.WebControl.Style" /> property of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. Any setting that is applied in the <see cref="P:System.Web.UI.WebControls.Wizard.StepStyle" /> property overrides the corresponding setting in the <see cref="P:System.Web.UI.WebControls.WebControl.Style" /> property of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
<para>The following <see cref="P:System.Web.UI.WebControls.Wizard.StepStyle" /> properties can be set to override the <see cref="P:System.Web.UI.WebControls.WebControl.Style" /> properties of the <see cref="T:System.Web.UI.WebControls.Wizard" /> control:</para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.CssClass" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>When you use a <see cref="T:System.Web.UI.WebControls.TemplatedWizardStep" /> template to define the appearance for the <see cref="T:System.Web.UI.WebControls.WizardStep" /> objects, the <see cref="P:System.Web.UI.WebControls.Wizard.StepStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a <see cref="T:System.Web.UI.WebControls.Style" /> object that defines the settings for the <see cref="T:System.Web.UI.WebControls.WizardStep" /> objects.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TagKey">
<MemberSignature Language="C#" Value="protected virtual System.Web.UI.HtmlTextWriterTag TagKey { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.HtmlTextWriterTag</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.TagKey" /> property is used primarily by control developers to extend the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag" /> value that corresponds to the <see cref="T:System.Web.UI.WebControls.Wizard" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TrackViewState">
<MemberSignature Language="C#" Value="protected override void TrackViewState ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Tracks view state.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="WizardSteps">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.WizardStepCollection WizardSteps { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.WebControls.WizardStepCollectionEditor,System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardStepCollection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.WizardSteps" /> property returns a collection of <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that make up the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. You can use the <see cref="P:System.Web.UI.WebControls.Wizard.WizardSteps" /> collection to access the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that are contained in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control programmatically. Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Add(System.Web.UI.WebControls.WizardStepBase)" />, <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Remove(System.Web.UI.WebControls.WizardStepBase)" />, <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Clear" />, and <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Insert(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> methods to manipulate the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects in the collection programmatically.</para>
<block subset="none" type="note">
<para>If you are using Microsoft Visual Studio 2005, note that the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> is persisted in Source view. If you change the <see cref="P:System.Web.UI.WebControls.Wizard.WizardSteps" /> property in Design view by clicking the sidebar buttons, and you then run the page, the first step of the Wizard control might not be shown because the <see cref="P:System.Web.UI.WebControls.Wizard.ActiveStepIndex" /> might be pointing to a different step.</para>
</block>
<para>If the <see cref="T:System.Web.UI.WebControls.Wizard" /> control contains multiple <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collections, the collections will be merged.</para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a collection containing all the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that are defined for the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|