summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/OS.java
blob: 383ad11aceae2ec35fab5bbd88d420ca45ef9309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.wpf;


import org.eclipse.swt.internal.*;

/** @jniclass flags=cpp */
public class OS extends C {
	
	/** Constants */
	public static final int BindingFlags_Instance = 4;
	public static final int BindingFlags_NonPublic = 32;
	
	public static final int DragAction_Cancel = 2;
	public static final int DragAction_Continue = 0;
	public static final int DragAction_Drop = 1;

	public static final int DragDropEffects_Copy = 1;
	public static final int DragDropEffects_Link = 4;
	public static final int DragDropEffects_Move = 2;
	public static final int DragDropEffects_None = 0;

	public static final int DragDropKeyStates_AltKey = 32;
	public static final int DragDropKeyStates_ControlKey = 8;
	public static final int DragDropKeyStates_None = 0;
	public static final int DragDropKeyStates_ShiftKey = 4;

	public static final int FontStyle_Bold = 1;
	public static final int FontStyle_Italic = 2;
	public static final int FontStyle_Regular = 0;
	public static final int FontStyle_Strikeout = 8;
	public static final int FontStyle_Underline = 4;

	public static final int Key_LeftAlt = 120;
	public static final int Key_RightAlt = 121;
	public static final int Key_LeftCtrl = 118;
	public static final int Key_RightCtrl = 119;
	public static final int Key_LeftShift = 116;
	public static final int Key_RightShift = 117;
	public static final int Key_Left = 23;
	public static final int Key_Up = 24;
	public static final int Key_Right = 25;
	public static final int Key_Down = 26;
	public static final int Key_PageUp = 19;
	public static final int Key_PageDown = 20;
	public static final int Key_End = 21;
	public static final int Key_Home = 22;
	public static final int Key_Insert = 31;
	public static final int Key_ImeProcessed = 155;
	public static final int Key_F1 = 90;
	public static final int Key_F2 = 91;
	public static final int Key_F3 = 92;
	public static final int Key_F4 = 93;
	public static final int Key_F5 = 94;
	public static final int Key_F6 = 95;
	public static final int Key_F7 = 96;
	public static final int Key_F8 = 97;
	public static final int Key_F9 = 98;
	public static final int Key_F10 = 99;
	public static final int Key_F11 = 100;
	public static final int Key_F12 = 101;
	public static final int Key_F13 = 102;
	public static final int Key_F14 = 103;
	public static final int Key_F15 = 104;
	public static final int Key_Back = 2;
	public static final int Key_Return = 6;
	public static final int Key_Delete = 32;
	public static final int Key_Escape = 13;
	public static final int Key_Tab = 3;
	public static final int Key_LineFeed = 4;
	public static final int Key_NumPad0 = 74;
	public static final int Key_NumPad1 = 75;
	public static final int Key_NumPad2 = 76;
	public static final int Key_NumPad3 = 77;
	public static final int Key_NumPad4 = 78;
	public static final int Key_NumPad5 = 79;
	public static final int Key_NumPad6 = 80;
	public static final int Key_NumPad7 = 81;
	public static final int Key_NumPad8 = 82;
	public static final int Key_NumPad9 = 83;
	public static final int Key_Multiply = 84;
	public static final int Key_Add = 85;
	public static final int Key_Separator = 86;
	public static final int Key_Subtract = 87;
	public static final int Key_System = 156;
	public static final int Key_Decimal = 88;
	public static final int Key_Divide = 89;
	public static final int Key_CapsLock = 8;
	public static final int Key_PrintScreen = 30;
	public static final int Key_Pause = 7;
	public static final int Key_Cancel = 1;
	public static final int Key_NumLock = 114;
	public static final int Key_Scroll = 115;
	public static final int Key_D0 = 34;
	public static final int Key_D1 = 35;
	public static final int Key_D2 = 36;
	public static final int Key_D3 = 37;
	public static final int Key_D4 = 38;
	public static final int Key_D5 = 39;
	public static final int Key_D6 = 40;
	public static final int Key_D7 = 41;
	public static final int Key_D8 = 42;
	public static final int Key_D9 = 43;
	public static final int Key_A = 44;
	public static final int Key_B = 45;
	public static final int Key_C = 46;
	public static final int Key_D = 47;
	public static final int Key_E = 48;
	public static final int Key_F = 49;
	public static final int Key_G = 50;
	public static final int Key_H = 51;
	public static final int Key_I = 52;
	public static final int Key_J = 53;
	public static final int Key_K = 54;
	public static final int Key_L = 55;
	public static final int Key_M = 56;
	public static final int Key_N = 57;
	public static final int Key_O = 58;
	public static final int Key_P = 59;
	public static final int Key_Q = 60;
	public static final int Key_R = 61;
	public static final int Key_S = 62;
	public static final int Key_T = 63;
	public static final int Key_U = 64;
	public static final int Key_V = 65;
	public static final int Key_W = 66;
	public static final int Key_X = 67;
	public static final int Key_Y = 68;
	public static final int Key_Z = 69;
	public static final int Key_OemTilde = 146;
	public static final int Key_Oem2 = 145;
	public static final int Key_Oem4 = 149;
	public static final int Key_Oem6 = 151;
	public static final int Key_Oem7 = 152;
	public static final int Key_OemPipe = 150;
	public static final int Key_OemMinus = 143;
	public static final int Key_OemPlus = 141;
	public static final int Key_OemSemicolon = 140;
	public static final int Key_OemComma = 142;
	public static final int Key_OemPeriod = 144;
	
	public static final byte Visibility_Visible = 0;
	public static final byte Visibility_Hidden = 1;
	public static final byte Visibility_Collapsed = 2;
	
	public static final int GridUnitType_Auto = 0;
	public static final int GridUnitType_Pixel = 1;
	public static final int GridUnitType_Star = 2;
	
	public static final int Orientation_Horizontal = 0; 
	public static final int Orientation_Vertical = 1;
	
	public static final int OverflowMode_Never = 2;
	
	public static final int NavigationUIVisibility_Hidden = 2;
	
	public static final int ScrollEventType_EndScroll = 0;
	public static final int ScrollEventType_First = 1;
	public static final int ScrollEventType_LargeDecrement = 2;
	public static final int ScrollEventType_LargeIncrement = 3;
	public static final int ScrollEventType_Last = 4;
	public static final int ScrollEventType_SmallDecrement = 5;
	public static final int ScrollEventType_SmallIncrement = 6;
	public static final int ScrollEventType_ThumbPosition = 7;
	public static final int ScrollEventType_ThumbTrack = 8;
	
	public static final int ShutdownMode_OnExplicitShutdown = 2;
	
	public static final int HorizontalAlignment_Left = 0;
	public static final int HorizontalAlignment_Center = 1;
	public static final int HorizontalAlignment_Right = 2;
	public static final int HorizontalAlignment_Stretch = 3;
	
	public static final int VerticalAlignment_Top = 0;
	public static final int VerticalAlignment_Center = 1;
	public static final int VerticalAlignment_Bottom = 2;
	public static final int VerticalAlignment_Stretch = 3;
	
	public static final int UriKind_RelativeOrAbsolute = 0;
	public static final int UriKind_Absolute = 1;
	public static final int UriKind_Relative = 2;
	
	public static final int Stretch_None = 0;
	public static final int Stretch_Fill = 1;
	public static final int Stretch_Uniform = 2;
	public static final int Stretch_UniformToFill = 3;
	
	public static final int PenLineCap_Flat = 0;
	public static final int PenLineCap_Round = 1;
	public static final int PenLineCap_Square = 2;
	
	public static final int PenLineJoin_Miter = 0;
	public static final int PenLineJoin_Bevel = 1;
	public static final int PenLineJoin_Round = 2;
	
	public static final int SweepDirection_Clockwise = 0;
	public static final int SweepDirection_CounterClockwise = 1;
	
	public static final int FillRule_EvenOdd = 0;
	public static final int FillRule_Nonzero = 1;
	
	public static final int BitmapScalingMode_Unspecified = 0;
	public static final int BitmapScalingMode_LowQuality = 1;
	public static final int BitmapScalingMode_HighQuality = 2;

	public static final int EdgeMode_Unspecified = 0;
	public static final int EdgeMode_Aliased = 1;
	
	public static final int FlowDirection_LeftToRight = 0;
	public static final int FlowDirection_RightToLeft = 1;

	public static final int TileMode_Tile = 4;
	
	public static final int AlignmentX_Left = 0;
	public static final int AlignmentX_Center = 1;
	public static final int AlignmentX_Right = 2;
	public static final int AlignmentY_Top = 0;
	public static final int AlignmentY_Center = 1;
	public static final int Alignmenty_Bottom = 2;
	
	public static final int BrushMappingMode_Absolute = 0;
	public static final int BrushMappingMode_RelativeToBoundingBox = 1;

	public static final int GradientSpreadMethod_Pad = 0;
	public static final int GradientSpreadMethod_Reflect = 1;
	public static final int GradientSpreadMethod_Repeat = 2;
	
	public static final int GeometryCombineMode_Union = 0;
	public static final int GeometryCombineMode_Intersect = 1;
	public static final int GeometryCombineMode_Xor = 2;
	public static final int GeometryCombineMode_Exclude = 3;
	
	public static final int TextAlignment_Left = 0;
	public static final int TextAlignment_Right = 1;
	public static final int TextAlignment_Center = 2;
	public static final int TextAlignment_Justify = 3;
	
	public static final int BaselineAlignment_Baseline = 3;
	
	public static final int TextWrapping_WrapWithOverflow = 0;
	public static final int TextWrapping_NoWrap = 1;
	public static final int TextWrapping_Wrap = 2;
		
	public static final int IntersectionDetail_Empty = 1;
	
	public static final int TextTabAlignment_Left = 0;
	
	public static final int MouseButtonState_Released = 0;
	public static final int MouseButtonState_Pressed = 1;
	
	public static final int MouseButton_Left = 0;
	public static final int MouseButton_Middle = 1;
	public static final int MouseButton_Right = 2;
	public static final int MouseButton_XButton1 = 3;
	public static final int MouseButton_XButton2 = 4;
	
	public static final int MouseButtons_None = 0;
	public static final int MouseButtons_Left = 1048576;
	public static final int MouseButtons_Right = 2097152;
	public static final int MouseButtons_Middle = 4194304;
	public static final int MouseButtons_XButton1 = 8388608;
	public static final int MouseButtons_XButton2 = 16777216;
	
	public static final int ModifierKeys_Alt = 1;
	public static final int ModifierKeys_Control = 2;
	public static final int ModifierKeys_Shift = 4;
	
	public static final int ResizeMode_NoResize = 0;
	public static final int ResizeMode_CanMinimize = 1;
	public static final int ResizeMode_CanResize = 2;
	public static final int ResizeMode_CanResizeWithGrip = 3;
	
	public static final int WindowStyle_None = 0;
	public static final int WindowStyle_SingleBorderWindow = 1;
	public static final int WindowStyle_ThreeDBorderWindow = 2;
	public static final int WindowStyle_ToolWindow = 3;
	

	public static final int WebBrowserReadyState_Uninitialized = 0;
	public static final int WebBrowserReadyState_Loading = 1;
	public static final int WebBrowserReadyState_Loaded = 2;
	public static final int WebBrowserReadyState_Interactive = 3;
	public static final int WebBrowserReadyState_Complete = 4;
	
	public static final int Dock_Top = 1;
	public static final int Dock_Bottom = 3;

	public static final int SelectionMode_Single = 0;
	public static final int SelectionMode_Multiple = 1;
	public static final int SelectionMode_Extended = 2;
	
	public static final int TickPlacement_None = 0;
    public static final int TickPlacement_TopLeft = 1;
    public static final int TickPlacement_BottomRight = 2;
	public static final int TickPlacement_Both = 3;

	public static final int WindowState_Normal = 0;
    public static final int WindowState_Minimized = 1;
    public static final int WindowState_Maximized = 2;
    
    public static final int BitmapCreateOptions_None = 0;
    public static final int BitmapCreateOptions_PreservePixelFormat = 1;
    public static final int BitmapCacheOption_Default = 0;
    
    public static final int MessageBoxButton_OK = 0;
    public static final int MessageBoxButton_OKCancel = 1;
    public static final int MessageBoxButton_YesNoCancel = 3;
    public static final int MessageBoxButton_YesNo = 4;
    
    public static final int MessageBoxImage_None = 0;
    public static final int MessageBoxImage_Error = 16;
    public static final int MessageBoxImage_Hand = 16;
    public static final int MessageBoxImage_Stop = 16;
    public static final int MessageBoxImage_Question = 32;
    public static final int MessageBoxImage_Exclamation = 48;
    public static final int MessageBoxImage_Warning = 48;
    public static final int MessageBoxImage_Information = 64;
    public static final int MessageBoxImage_Asterisk = 64;
    
    public static final int MessageBoxResult_None = 0;
    public static final int MessageBoxResult_OK = 1;
    public static final int MessageBoxResult_Cancel = 2;
    public static final int MessageBoxResult_Yes = 6;
    public static final int MessageBoxResult_No = 7;
    
    public static final int KeyboardNavigationMode_None = 3;
    
    public static final int PlacementMode_AbsolutePoint = 5;
    public static final int PlacementMode_MousePoint = 8;
    
    public static final int DispatcherPriority_Inactive = 0;
    public static final int DispatcherPriority_Normal = 9;
    public static final int DispatcherPriority_Send = 10;
    
    public static final int ScrollBarVisibility_Disabled = 0;
    public static final int ScrollBarVisibility_Auto = 1;
    public static final int ScrollBarVisibility_Hidden = 2;
    public static final int ScrollBarVisibility_Visible = 3;
 
 	public static final int FocusNavigationDirection_Next = 0;
	public static final int FocusNavigationDirection_Previous = 1;
	public static final int FocusNavigationDirection_First = 2;
	public static final int FocusNavigationDirection_Last = 3;
	
	public static final int RelativeSourceMode_FindAncestor = 3;

	public static final int DialogResult_OK = 1;
	
	public static final int TextDecorationUnit_FontRecommended = 0;
	public static final int TextDecorationLocation_Underline = 0;
	public static final int TextDecorationLocation_Strikethrough = 2;
	
	public static final int ToleranceType_Absolute = 0;
	

	/*
	* Note that these GCHandles are leaked.
	*/
	public static final int FontStyles_Italic = FontStyles_Italic();
	public static final int FontStyles_Normal = FontStyles_Normal();	
	public static final int FontStyles_Oblique = FontStyles_Oblique();	
	public static final int FontWeights_Bold = FontWeights_Bold();
	public static final int FontWeights_Normal = FontWeights_Normal();	
	public static final int FontStretches_Normal = FontStretches_Normal();
	public static final int Colors_White = Colors_White();
	public static final int Colors_Black = Colors_Black();
	public static final int Colors_Transparent = Colors_Transparent();
	public static final int SystemColors_ControlColor = SystemColors_ControlColor();
	
/** Handlers */

/** @method flags=no_gen */
public static final native int gcnew_CancelEventHandler(int jniRef, String string);
/** @method flags=gcnew no_gen */
public static final native int gcnew_ContextMenuEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_RoutedPropertyChangedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_RoutedPropertyChangedEventHandlerObject(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_RoutedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_DragDeltaEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_EventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_ExecutedRoutedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_FormsMouseEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_DispatcherHookEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_SelectionChangedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_SizeChangedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_ScrollEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_KeyEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_KeyboardFocusChangedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_TextChangedEventHandler(int jniRef, String string);
/** @method flags=no_gen gcnew */
public static final native int gcnew_TextCompositionEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_TimerHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_MouseEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_MouseButtonEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_MouseWheelEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_NoArgsDelegate(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_GiveFeedbackEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_QueryContinueDragEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_DragEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_WebBrowserNavigatingEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_WebBrowserNavigatedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_WebBrowserProgressChangedEventHandler(int jniRef, String string);
/** @method flags=no_gen */
public static final native int gcnew_WebBrowserDocumentCompletedEventHandler(int jniRef, String string);

/** JNI natives */

/** @method flags=jni */
public static final native int NewGlobalRef(Object object);
/**
 * @method flags=jni
 * @param globalRef cast=(jobject)
 */
public static final native void DeleteGlobalRef(int globalRef);
/** @method flags=no_gen */
public static final native Object JNIGetObject(int globalRef);

/** Natives */

/**
 * @method flags=getter
 * @param sender cast=(AccessText^),flags=gcobject
 */
public static final native char AccessText_AccessKey(int sender);
/**
 * @method flags=setter
 * @param sender cast=(AccessText^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void AccessText_Text(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(AccessText^),flags=gcobject
 * @param value cast=(TextWrapping)
 */
public static final native void AccessText_TextWrapping(int sender, int value);
/** @method accessor=ApplicationCommands::Cut,flags=const gcobject */
public static final native int ApplicationCommands_Cut();
/** @method accessor=ApplicationCommands::Paste,flags=const gcobject */
public static final native int ApplicationCommands_Paste();
/** @method accessor=ApplicationCommands::Redo,flags=const gcobject */
public static final native int ApplicationCommands_Redo();
/** @method accessor=ApplicationCommands::Undo,flags=const gcobject */
public static final native int ApplicationCommands_Undo();
/** @method accessor=Application::Current,flags=const gcobject */
public static final native int Application_Current();
/**
 * @method flags=gcobject getter
 * @param sender cast=(Application ^),flags=gcobject
 */
public static final native int Application_Dispatcher(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Application^),flags=gcobject
 */
public static final native int Application_Resources(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Application^),flags=gcobject
 * @param value cast=(ResourceDictionary^),flags=gcobject
 */
public static final native void Application_Resources(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(Application^),flags=gcobject
 */
public static final native void Application_Run(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Application^),flags=gcobject
 */
public static final native void Application_Shutdown(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Application^),flags=gcobject
 * @param value cast=(ShutdownMode)
 */
public static final native void Application_ShutdownMode(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Application^),flags=gcobject
 */
public static final native int Application_Windows(int sender);
/**
 * @method accessor=Array::CreateInstance,flags=gcobject
 * @param elementType cast=(Type^),flags=gcobject
 */
public static final native int Array_CreateInstance(int elementType, int length);
/**
 * @method flags=cpp
 * @param sender cast=(Array^),flags=gcobject
 */
public static final native int Array_GetLength(int sender, int dimension);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Array^),flags=gcobject
 */
public static final native int Array_GetValue (int sender, int index);
/**
 * @method flags=cpp
 * @param sender cast=(Array^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void Array_SetValue (int sender, int value, int index);
/**
 * @method flags=cpp
 * @param sender cast=(ArrayList^),flags=gcobject
 */
public static final native void ArrayList_Clear(int sender);
/**
 * @method flags=getter
 * @param sender cast=(ArrayList^),flags=gcobject
 */
public static final native int ArrayList_Count(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ArrayList^),flags=gcobject
 */
public static final native int ArrayList_default(int sender, int index);
/**
 * @method flags=setter
 * @param sender cast=(ArrayList^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void ArrayList_default(int sender, int index, int value);
/**
 * @method flags=cpp
 * @param sender cast=(ArrayList^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void ArrayList_Insert(int sender, int index, int value);
/**
 * @method flags=cpp
 * @param sender cast=(ArrayList^),flags=gcobject
 */
public static final native void ArrayList_RemoveAt(int sender, int index);
/**
 * @method flags=setter
 * @param sender cast=(Binding^),flags=gcobject
 * @param value cast=(RelativeSource^),flags=gcobject
 */
public static final native void Binding_RelativeSource(int sender, int value);
/**
 * @method flags=no_gen cpp
 * @param sender cast=(System::Drawing::Bitmap^),flags=gcobject
 */
public static final native int Bitmap_GetHicon(int sender);
/**
 * @method accessor=BitmapDecoder::Create,flags=gcobject
 * @param stream cast=(System::IO::Stream^),flags=gcobject
 * @param createOptions cast=(BitmapCreateOptions)
 * @param cacheOption cast=(BitmapCacheOption)
 */
public static final native int BitmapDecoder_Create(int stream, int createOptions, int cacheOption);
/**
 * @method flags=gcobject getter
 * @param sender cast=(BitmapDecoder^),flags=gcobject
 */
public static final native int BitmapDecoder_Frames(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(BitmapEncoder^),flags=gcobject
 */
public static final native int BitmapEncoder_Frames(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(BitmapEncoder^),flags=gcobject
 * @param stream cast=(System::IO::Stream^),flags=gcobject
 */
public static final native void BitmapEncoder_Save(int sender, int stream);
/**
 * @method accessor=BitmapFrame::Create,flags=gcobject
 * @param source cast=(BitmapSource^),flags=gcobject
 */
public static final native int BitmapFrame_Create(int source);
/**
 * @method flags=cpp
 * @param sender cast=(System::Collections::Generic::IList<BitmapFrame^>^),flags=gcobject
 * @param frame cast=(BitmapFrame^),flags=gcobject
 */
public static final native void BitmapFrameCollection_Add(int sender, int frame);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Collections::Generic::IList<BitmapFrame^>^),flags=gcobject
 */
public static final native int BitmapFrameCollection_default(int sender, int index);
/**
 * @method flags=cpp
 * @param sender cast=(BitmapImage^),flags=gcobject
 */
public static final native void BitmapImage_BeginInit(int sender);
/**
 * @method flags=setter
 * @param sender cast=(BitmapImage^),flags=gcobject
 * @param value cast=(BitmapCreateOptions)
 */
public static final native void BitmapImage_CreateOptions(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(BitmapImage^),flags=gcobject
 */
public static final native void BitmapImage_EndInit(int sender);
/**
 * @method flags=setter
 * @param sender cast=(BitmapImage^),flags=gcobject
 * @param uri cast=(Uri^),flags=gcobject
 */
public static final native void BitmapImage_UriSource(int sender, int uri);
/**
 * @method flags=gcobject getter
 * @param sender cast=(BitmapPalette^),flags=gcobject
 */
public static final native int BitmapPalette_Colors(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(BitmapSource^),flags=gcobject
 */
public static final native int BitmapSource_Clone(int sender);
/**
 * @method accessor=BitmapSource::Create,flags=gcobject
 * @param pixelFormat cast=(PixelFormat),flags=gcobject
 * @param palette cast=(BitmapPalette^),flags=gcobject
 * @param buffer cast=(IntPtr)
 */
public static final native int BitmapSource_Create(int pixelWidth, int pixelHeight, double dpiX, double dpiY, int pixelFormat, int palette, byte[] buffer, int bufferSize, int stride);
/**
 * @method flags=cpp
 * @param sender cast=(BitmapSource^),flags=gcobject
 * @param sourceRect cast=(Int32Rect),flags=gcobject
 * @param buffer cast=(IntPtr)
 */
public static final native void BitmapSource_CopyPixels(int sender, int sourceRect, byte[] buffer, int bufferSize, int stride);
/**
 * @method flags=gcobject getter
 * @param sender cast=(BitmapSource^),flags=gcobject
 */
public static final native int BitmapSource_Format(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(BitmapSource^),flags=gcobject
 */
public static final native int BitmapSource_Palette(int sender);
/**
 * @method flags=getter
 * @param sender cast=(BitmapSource^),flags=gcobject
 */
public static final native int BitmapSource_PixelHeight(int sender);
/**
 * @method flags=getter
 * @param sender cast=(BitmapSource^),flags=gcobject
 */
public static final native int BitmapSource_PixelWidth(int sender);
/** @method accessor=Border::typeid,flags=const gcobject */
public static final native int Border_typeid();
/** @method accessor=Brushes::White,flags=const gcobject */
public static final native int Brushes_White();
/** @method accessor=Brushes::Black,flags=const gcobject */
public static final native int Brushes_Black();
/** @method accessor=Brushes::Navy,flags=const gcobject */
public static final native int Brushes_Navy();
/** @method accessor=Brushes::Red,flags=const gcobject */
public static final native int Brushes_Red();
/** @method accessor=Brushes::Transparent,flags=const gcobject */
public static final native int Brushes_Transparent();
/** @method accessor=Brushes::LightSkyBlue,flags=const gcobject */
public static final native int Brushes_LightSkyBlue();
/**
 * @method flags=setter
 * @param sender cast=(Brush^),flags=gcobject
 */
public static final native void Brush_Opacity(int sender, double opacity);
/**
 * @method flags=getter
 * @param sender cast=(Button^),flags=gcobject
 */
public static final native boolean Button_IsDefault(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Button^),flags=gcobject
 */
public static final native void Button_IsDefault(int sender, boolean value);
/**
 * @method flags=adder
 * @param sender cast=(ButtonBase^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void ButtonBase_Click(int sender, int handler);
/** @method accessor=ButtonBase::ClickEvent,flags=const gcobject */
public static final native int ButtonBase_ClickEvent();
/** @method accessor=Byte::typeid,flags=const gcobject */
public static final native int Byte_typeid();
/**
 * @method flags=setter
 * @param sender cast=(CancelEventArgs^),flags=gcobject
 */
public static final native void CancelEventArgs_Cancel(int sender, boolean value);
/**
 * @method accessor=Canvas::GetLeft
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native double Canvas_GetLeft(int element);
/**
 * @method accessor=Canvas::GetTop
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native double Canvas_GetTop(int element);
/**
 * @method accessor=Canvas::SetLeft
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native void Canvas_SetLeft(int element, double length);
/**
 * @method accessor=Canvas::SetTop
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native void Canvas_SetTop(int element, double length);
/** @method accessor=Canvas::typeid,flags=const gcobject */
public static final native int Canvas_typeid();
/**
 * @method flags=getter
 * @param sender cast=(CharacterHit^),flags=gcobject
 */
public static final native int CharacterHit_FirstCharacterIndex(int sender);
/**
 * @method flags=getter
 * @param sender cast=(CharacterHit^),flags=gcobject
 */
public static final native int CharacterHit_TrailingLength(int sender);
/** @method accessor=CheckBox::typeid,flags=const gcobject */
public static final native int CheckBox_typeid();
/** @method accessor=Clipboard::Clear */
public static final native void Clipboard_Clear();
/**
 * @method accessor=Clipboard::ContainsData
 * @param format cast=(String^),flags=gcobject
 */
public static final native boolean Clipboard_ContainsData(int format);
/**
 * @method accessor=Clipboard::GetData,flags=gcobject
 * @param format cast=(String^),flags=gcobject
 */
public static final native int Clipboard_GetData(int format);
/** @method accessor=Clipboard::GetDataObject,flags=gcobject */
public static final native int Clipboard_GetDataObject();
/** @method accessor=Clipboard::GetText,flags=gcobject */
public static final native int Clipboard_GetText();
/**
 * @method accessor=Clipboard::SetData
 * @param format cast=(String^),flags=gcobject
 * @param data cast=(Object^),flags=gcobject
 */
public static final native void Clipboard_SetData(int format, int data);
/**
 * @method accessor=Clipboard::SetDataObject
 * @param data cast=(Object^),flags=gcobject
 */
public static final native void Clipboard_SetDataObject(int data, boolean copy);
/** @method accessor=Color::FromArgb,flags=struct gcobject */
public static final native int Color_FromArgb(byte a, byte r, byte g, byte b);
/**
 * @method flags=getter
 * @param sender cast=(Color^),flags=gcobject
 */
public static final native byte Color_A(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Color^),flags=gcobject
 */
public static final native byte Color_B(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Color^),flags=gcobject
 */
public static final native byte Color_G(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Color^),flags=gcobject
 */
public static final native byte Color_R(int sender);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
 */
public static final native void ColorDialog_AnyColor(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
 * @param color cast=(System::Drawing::Color),flags=gcobject
 */
public static final native void ColorDialog_Color(int sender, int color);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
 */
public static final native int ColorDialog_Color(int sender);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
 * @param colors cast=(array<int>^),flags=gcobject
 */
public static final native void ColorDialog_CustomColors(int sender, int colors);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::ColorDialog^),flags=gcobject
 */
public static final native int ColorDialog_CustomColors(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(System::Collections::Generic::List<Color>^),flags=gcobject
 * @param color cast=(Color),flags=gcobject
 */
public static final native void ColorList_Add(int sender, int color);
/**
 * @method flags=getter
 * @param sender cast=(System::Collections::Generic::IList<Color>^),flags=gcobject
 */
public static final native int ColorList_Count(int sender);
/**
 * @method flags=getter gcobject
 * @param sender cast=(System::Collections::Generic::IEnumerator<Color>^),flags=gcobject
 */
public static final native int ColorList_Current(int sender);
/**
 * @method flags=gcobject cpp
 * @param sender cast=(System::Collections::Generic::IEnumerable<Color>^),flags=gcobject
 */
public static final native int ColorList_GetEnumerator(int sender);
/** @method accessor=Colors::White,flags=const struct gcobject */
public static final native int Colors_White();
/** @method accessor=Colors::Black,flags=const struct gcobject */
public static final native int Colors_Black();
/** @method accessor=Colors::Red,flags=const struct gcobject */
public static final native int Colors_Red();
/** @method accessor=Colors::Maroon,flags=const struct gcobject */
public static final native int Colors_Maroon();
/** @method accessor=Colors::Lime,flags=const struct gcobject */
public static final native int Colors_Lime();
/** @method accessor=Colors::Green,flags=const struct gcobject */
public static final native int Colors_Green();
/** @method accessor=Colors::Olive,flags=const struct gcobject */
public static final native int Colors_Olive();
/** @method accessor=Colors::Blue,flags=const struct gcobject */
public static final native int Colors_Blue();
/** @method accessor=Colors::Navy,flags=const struct gcobject */
public static final native int Colors_Navy();
/** @method accessor=Colors::LightSkyBlue,flags=const struct gcobject */
public static final native int Colors_LightSkyBlue();
/** @method accessor=Colors::Magenta,flags=const struct gcobject */
public static final native int Colors_Magenta();
/** @method accessor=Colors::Purple,flags=const struct gcobject */
public static final native int Colors_Purple();
/** @method accessor=Colors::Cyan,flags=const struct gcobject */
public static final native int Colors_Cyan();
/** @method accessor=Colors::Teal,flags=const struct gcobject */
public static final native int Colors_Teal();
/** @method accessor=Colors::Transparent,flags=const struct gcobject */
public static final native int Colors_Transparent();
/** @method accessor=Colors::Silver,flags=const struct gcobject */
public static final native int Colors_Silver();
/** @method accessor=Colors::DarkGray,flags=const struct gcobject */
public static final native int Colors_DarkGray();
/** @method accessor=Colors::Yellow,flags=const struct gcobject */
public static final native int Colors_Yellow();
/**
 * @method flags=setter
 * @param sender cast=(ColumnDefinition^),flags=gcobject
 * @param width cast=(GridLength),flags=gcobject
 */
public static final native void ColumnDefinition_Width(int sender, int width);
/**
 * @method flags=cpp
 * @param sender cast=(ColumnDefinitionCollection^),flags=gcobject
 * @param column cast=(ColumnDefinition^),flags=gcobject
 */
public static final native void ColumnDefinitionCollection_Add(int sender, int column);
/**
 * @method flags=getter
 * @param sender cast=(ComboBox^),flags=gcobject
 */
public static final native boolean ComboBox_IsDropDownOpen(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ComboBox^),flags=gcobject
 */
public static final native void ComboBox_IsDropDownOpen(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(ComboBox^),flags=gcobject
 */
public static final native void ComboBox_IsEditable(int sender, boolean value);
/**
 * @method flags=gcobject getter
 * @param handle cast=(ComboBox^),flags=gcobject
 */
public static final native int ComboBox_SelectionBoxItem(int handle);
/**
 * @method accessor=CommandManager::AddPreviewExecutedHandler,flags=struct
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(ExecutedRoutedEventHandler^),flags=gcobject
 */
public static final native void CommandManager_AddPreviewExecutedHandler(int sender, int handler);
/**
 * @method flags=cpp
 * @param sender cast=(CommonDialog^),flags=gcobject
 * @param parent cast=(Window^),flags=gcobject
 */
public static final native boolean CommonDialog_ShowDialog(int sender, int parent);
/**
 * @method flags=cpp
 * @param sender cast=(CompositeCollection^),flags=gcobject
 * @param object cast=(Object^),flags=gcobject
 */
public static final native int CompositeCollection_IndexOf(int sender, int object);
/**
 * @method flags=cpp
 * @param sender cast=(CompositeCollection^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void CompositeCollection_Insert(int sender, int index, int value);
/**
 * @method flags=cpp
 * @param sender cast=(CompositeCollection^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void CompositeCollection_Remove(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(CompositeCollection^),flags=gcobject
 */
public static final native void CompositeCollection_RemoveAt(int sender, int value);
/** @method accessor=Console::Beep */
public static final native void Console_Beep();
/**
 * @method flags=gcobject getter
 * @param sender cast=(Control^),flags=gcobject
 */
public static final native int Control_Padding(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(Thickness),flags=gcobject
 */
public static final native void Control_Padding(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ContainerVisual^),flags=gcobject
 */
public static final native int ContainerVisual_Clip(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ContainerVisual^),flags=gcobject
 * @param clip cast=(Geometry^),flags=gcobject
 */
public static final native void ContainerVisual_Clip(int sender, int clip);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ContentControl^),flags=gcobject
 */
public static final native int ContentControl_Content(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ContentControl^),flags=gcobject
 * @param content cast=(Object^),flags=gcobject
 */
public static final native void ContentControl_Content(int sender, int content);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ContentPresenter^),flags=gcobject
 */
public static final native int ContentPresenter_Content(int sender);
/** @method accessor=ContentPresenter::typeid,flags=const gcobject */
public static final native int ContentPresenter_typeid();
/**
 * @method flags=setter
 * @param sender cast=(ContextMenu^),flags=gcobject
 */
public static final native void ContextMenu_IsOpen(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(ContextMenu^),flags=gcobject
 * @param mode cast=(PlacementMode)
 */
public static final native void ContextMenu_Placement(int sender, int mode);
/**
 * @method flags=setter
 * @param sender cast=(ContextMenu^),flags=gcobject
 */
public static final native void ContextMenu_HorizontalOffset(int sender, int offset);
/**
 * @method flags=setter
 * @param sender cast=(ContextMenu^),flags=gcobject
 */
public static final native void ContextMenu_VerticalOffset(int sender, int offset);
/**
 * @method flags=adder
 * @param sender cast=(ContextMenu^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void ContextMenu_Opened(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(ContextMenu^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void ContextMenu_Closed(int sender, int handler);
/**
 * @method flags=getter
 * @param sender cast=(ContextMenuEventArgs^),flags=gcobject
 */
public static final native double ContextMenuEventArgs_CursorLeft(int sender);
/**
 * @method flags=getter
 * @param sender cast=(ContextMenuEventArgs^),flags=gcobject
 */
public static final native double ContextMenuEventArgs_CursorTop(int sender);
/** @method accessor=Control::BackgroundProperty,flags=const gcobject */
public static final native int Control_BackgroundProperty();
/** @method accessor=Control::BorderBrushProperty,flags=const gcobject */
public static final native int Control_BorderBrushProperty();
/** @method accessor=Control::BorderThicknessProperty,flags=const gcobject */
public static final native int Control_BorderThicknessProperty();
/** @method accessor=Control::ForegroundProperty,flags=const gcobject */
public static final native int Control_ForegroundProperty();
/** @method accessor=Control::FontFamilyProperty,flags=const gcobject */
public static final native int Control_FontFamilyProperty();
/** @method accessor=Control::FontStyleProperty,flags=const gcobject */
public static final native int Control_FontStyleProperty();
/** @method accessor=Control::FontWeightProperty,flags=const gcobject */
public static final native int Control_FontWeightProperty();
/** @method accessor=Control::FontStretchProperty,flags=const gcobject */
public static final native int Control_FontStretchProperty();
/** @method accessor=Control::FontSizeProperty,flags=const gcobject */
public static final native int Control_FontSizeProperty();
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(Thickness),flags=gcobject
 */
public static final native void Control_BorderThickness(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(Brush^),flags=gcobject
 */
public static final native void Control_Background(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(Brush^),flags=gcobject
 */
public static final native void Control_Foreground(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Control^),flags=gcobject
 */
public static final native int Control_FontFamily(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(FontFamily^),flags=gcobject
 */
public static final native void Control_FontFamily(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(FontStyle),flags=gcobject
 */
public static final native void Control_FontStyle(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(FontWeight),flags=gcobject
 */
public static final native void Control_FontWeight(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(FontStretch),flags=gcobject
 */
public static final native void Control_FontStretch(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(Control^),flags=gcobject
 */
public static final native double Control_FontSize(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 */
public static final native void Control_FontSize(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Control ^),flags=gcobject
 */
public static final native int Control_HorizontalContentAlignment(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Control ^),flags=gcobject
 * @param value cast=(HorizontalAlignment)
 */
public static final native void Control_HorizontalContentAlignment(int sender, int value);
/**
 * @method flags=adder
 * @param sender cast=(Control^),flags=gcobject
 * @param handler cast=(MouseButtonEventHandler^),flags=gcobject
 */
public static final native void Control_MouseDoubleClick(int sender, int handler);
/** @method accessor=Control::MouseDoubleClickEvent,flags=const gcobject */
public static final native int Control_MouseDoubleClickEvent();
/**
 * @method flags=adder
 * @param sender cast=(Control^),flags=gcobject
 * @param handler cast=(MouseButtonEventHandler^),flags=gcobject
 */
public static final native void Control_PreviewMouseDoubleClick(int sender, int handler);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Control^),flags=gcobject
 */
public static final native int Control_Template(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(ControlTemplate^),flags=gcobject
 */
public static final native void Control_Template(int sender, int value);
/** @method accessor=Control::TemplateProperty,flags=const gcobject */
public static final native int Control_TemplateProperty();
/**
 * @method flags=setter
 * @param sender cast=(Control^),flags=gcobject
 * @param value cast=(VerticalAlignment)
 */
public static final native void Control_VerticalContentAlignment(int sender, int value);
/** @method accessor=CultureInfo::CurrentUICulture,flags=gcobject const */
public static final native int CultureInfo_CurrentUICulture();
/** @method accessor=Cursors::AppStarting,flags=const gcobject */
public static final native int Cursors_AppStarting();
/** @method accessor=Cursors::Arrow,flags=const gcobject */
public static final native int Cursors_Arrow();
/** @method accessor=Cursors::Hand,flags=const gcobject */
public static final native int Cursors_Hand();
/** @method accessor=Cursors::Wait,flags=const gcobject */
public static final native int Cursors_Wait();
/** @method accessor=Cursors::Cross,flags=const gcobject */
public static final native int Cursors_Cross();
/** @method accessor=Cursors::Help,flags=const gcobject */
public static final native int Cursors_Help();
/** @method accessor=Cursors::SizeAll,flags=const gcobject */
public static final native int Cursors_SizeAll();
/** @method accessor=Cursors::SizeNS,flags=const gcobject */
public static final native int Cursors_SizeNS();
/** @method accessor=Cursors::SizeNWSE,flags=const gcobject */
public static final native int Cursors_SizeNWSE();
/** @method accessor=Cursors::SizeNESW,flags=const gcobject */
public static final native int Cursors_SizeNESW();
/** @method accessor=Cursors::SizeWE,flags=const gcobject */
public static final native int Cursors_SizeWE();
/** @method accessor=Cursors::ScrollE,flags=const gcobject */
public static final native int Cursors_ScrollE();
/** @method accessor=Cursors::ScrollN,flags=const gcobject */
public static final native int Cursors_ScrollN();
/** @method accessor=Cursors::ScrollNE,flags=const gcobject */
public static final native int Cursors_ScrollNE();
/** @method accessor=Cursors::ScrollNW,flags=const gcobject */
public static final native int Cursors_ScrollNW();
/** @method accessor=Cursors::ScrollS,flags=const gcobject */
public static final native int Cursors_ScrollS();
/** @method accessor=Cursors::ScrollSE,flags=const gcobject */
public static final native int Cursors_ScrollSE();
/** @method accessor=Cursors::ScrollSW,flags=const gcobject */
public static final native int Cursors_ScrollSW();
/** @method accessor=Cursors::ScrollW,flags=const gcobject */
public static final native int Cursors_ScrollW();
/** @method accessor=Cursors::IBeam,flags=const gcobject */
public static final native int Cursors_IBeam();
/** @method accessor=Cursors::UpArrow,flags=const gcobject */
public static final native int Cursors_UpArrow();
/** @method accessor=Cursors::No,flags=const gcobject */
public static final native int Cursors_No();
/**
 * @method accessor=System::Windows::Interop::CursorInteropHelper::Create,flags=gcobject
 * @param safeHandle cast=(SafeHandle^),flags=gcobject
 */
public static final native int CursorInteropHelper_Create(int safeHandle);
/** @method accessor=DashStyles::Dash,flags=const gcobject */
public static final native int DashStyles_Dash();
/** @method accessor=DashStyles::DashDot,flags=const gcobject */
public static final native int DashStyles_DashDot();
/** @method accessor=DashStyles::DashDotDot,flags=const gcobject */
public static final native int DashStyles_DashDotDot();
/** @method accessor=DashStyles::Dot,flags=const gcobject */
public static final native int DashStyles_Dot();
/** @method accessor=DashStyles::Solid,flags=const gcobject */
public static final native int DashStyles_Solid();
/** @method accessor=DataFormats::Bitmap,flags=const gcobject */
public static final native int DataFormats_Bitmap();
/** @method accessor=DataFormats::FileDrop,flags=const gcobject */
public static final native int DataFormats_FileDrop();
/** @method accessor=DataFormats::Html,flags=const gcobject */
public static final native int DataFormats_Html();
/** @method accessor=DataFormats::Rtf,flags=const gcobject */
public static final native int DataFormats_Rtf();
/** @method accessor=DataFormats::UnicodeText,flags=const gcobject */
public static final native int DataFormats_UnicodeText();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(DataObject^),flags=gcobject
 * @param format cast=(String^),flags=gcobject
 */
public static final native int DataObject_GetData(int sender, int format, boolean autoConvert);
/**
 * @method flags=cpp
 * @param sender cast=(DataObject^),flags=gcobject
 * @param format cast=(String^),flags=gcobject
 */
public static final native boolean DataObject_GetDataPresent(int sender, int format, boolean autoConvert);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(DataObject^),flags=gcobject
 */
public static final native int DataObject_GetFormats(int sender, boolean autoConvert);
/**
 * @method flags=cpp
 * @param sender cast=(DataObject^),flags=gcobject
 * @param format cast=(String^),flags=gcobject
 * @param data cast=(Object^),flags=gcobject
 */
public static final native void DataObject_SetData(int sender, int format, int data, boolean autoConvert);
/**
 * @method flags=cpp
 * @param sender cast=(DependencyObject^),flags=gcobject
 * @param property cast=(DependencyProperty^),flags=gcobject
 */
public static final native void DependencyObject_ClearValue(int sender, int property);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(DependencyObject^),flags=gcobject
 * @param property cast=(DependencyProperty^),flags=gcobject
 */
public static final native int DependencyObject_GetValue(int sender, int property);
/**
 * @method accessor=GetValue,flags=cpp
 * @param sender cast=(DependencyObject^),flags=gcobject
 * @param property cast=(DependencyProperty^),flags=gcobject
 */
public static final native double DependencyObject_GetValueDouble(int sender, int property);
/**
 * @method accessor=GetValue,flags=cpp
 * @param sender cast=(DependencyObject^),flags=gcobject
 * @param property cast=(DependencyProperty^),flags=gcobject
 */
public static final native int DependencyObject_GetValueInt(int sender, int property);
/**
 * @method flags=cpp
 * @param sender cast=(DependencyObject^),flags=gcobject
 * @param property cast=(DependencyProperty^),flags=gcobject
 * @param object cast=(Object^),flags=gcobject
 */
public static final native void DependencyObject_SetValue(int sender, int property, int object);
/** @method accessor=DependencyProperty::UnsetValue,flags=const gcobject */
public static final native int DependencyProperty_UnsetValue();
/**
 * @method flags=cpp
 * @param sender cast=(DependencyPropertyDescriptor^),flags=gcobject
 * @param object cast=(Object^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void DependencyPropertyDescriptor_AddValueChanged(int sender, int object, int handler);
/**
 * @method accessor=DependencyPropertyDescriptor::FromProperty,flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param type cast=(Type^),flags=gcobject
 */
public static final native int DependencyPropertyDescriptor_FromProperty(int dp, int type);
/**
 * @method accessor=Dispatcher::PushFrame
 * @param frame cast=(DispatcherFrame ^),flags=gcobject
 */
public static final native void Dispatcher_PushFrame(int frame);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Dispatcher ^),flags=gcobject
 */
public static final native int Dispatcher_Hooks(int sender);
/**
 * @method flags=adder
 * @param sender cast=(DispatcherHooks ^),flags=gcobject
 * @param handler cast=(EventHandler ^),flags=gcobject
 */
public static final native void DispatcherHooks_DispatcherInactive(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(DispatcherHooks ^),flags=gcobject
 * @param handler cast=(DispatcherHookEventHandler ^),flags=gcobject
 */
public static final native void DispatcherHooks_OperationAborted(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(DispatcherHooks ^),flags=gcobject
 * @param handler cast=(DispatcherHookEventHandler ^),flags=gcobject
 */
public static final native void DispatcherHooks_OperationCompleted(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(DispatcherHooks ^),flags=gcobject
 * @param handler cast=(DispatcherHookEventHandler ^),flags=gcobject
 */
public static final native void DispatcherHooks_OperationPosted(int sender, int handler);
/**
 * @method flags=getter
 * @param sender cast=(DispatcherFrame^),flags=gcobject
 */
public static final native boolean DispatcherFrame_Continue(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DispatcherFrame^),flags=gcobject
 */
public static final native void DispatcherFrame_Continue(int sender, boolean value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(DispatcherHookEventArgs ^),flags=gcobject
 */
public static final native int DispatcherHookEventArgs_Operation(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(DispatcherOperation^),flags=gcobject
 */
public static final native boolean DispatcherOperation_Abort(int sender);
/**
 * @method flags=getter
 * @param sender cast=(DispatcherOperation ^),flags=gcobject
 */
public static final native int DispatcherOperation_Priority(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DispatcherOperation ^),flags=gcobject
 * @param value cast=(DispatcherPriority)
 */
public static final native void DispatcherOperation_Priority(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(DispatcherOperation^),flags=gcobject
 */
public static final native int DispatcherOperation_Wait(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Dispatcher ^),flags=gcobject
 * @param priority cast=(DispatcherPriority)
 * @param method cast=(Delegate ^),flags=gcobject
 */
public static final native int Dispatcher_BeginInvoke(int sender, int priority, int method);
/**
 * @method flags=setter
 * @param sender cast=(DispatcherTimer^),flags=gcobject
 * @param value cast=(TimeSpan),flags=gcobject
 */
public static final native void DispatcherTimer_Interval(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(DispatcherTimer^),flags=gcobject
 */
public static final native void DispatcherTimer_Start(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(DispatcherTimer^),flags=gcobject
 */
public static final native void DispatcherTimer_Stop(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DispatcherTimer^),flags=gcobject
 */
public static final native void DispatcherTimer_Tag(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(DispatcherTimer^),flags=gcobject
 */
public static final native int DispatcherTimer_Tag(int sender);
/**
 * @method flags=adder
 * @param sender cast=(DispatcherTimer^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void DispatcherTimer_Tick(int sender, int handler);
/** @method accessor=DockPanel::DockProperty,flags=const gcobject */
public static final native int DockPanel_DockProperty();
/** @method accessor=DockPanel::typeid,flags=const gcobject */
public static final native int DockPanel_typeid();
/**
 * @method flags=cpp
 * @param sender cast=(DoubleCollection^),flags=gcobject
 */
public static final native void DoubleCollection_Add(int sender, double value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(DoubleAnimationUsingKeyFrames^),flags=gcobject
 */
public static final native int DoubleAnimationUsingKeyFrames_KeyFrames(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(DoubleKeyFrameCollection^),flags=gcobject
 * @param keyFrame cast=(DoubleKeyFrame^),flags=gcobject
 */
public static final native int DoubleKeyFrameCollection_Add(int sender, int keyFrame);
/**
 * @method flags=getter
 * @param e cast=(DragDeltaEventArgs^),flags=gcobject
 */
public static final native int DragDeltaEventArgs_VerticalChange(int e);
/**
 * @method flags=getter
 * @param e cast=(DragDeltaEventArgs^),flags=gcobject
 */
public static final native int DragDeltaEventArgs_HorizontalChange(int e);
/**
 * @method accessor=DragDrop::DoDragDrop
 * @param dragSource cast=(DependencyObject^),flags=gcobject
 * @param data cast=(Object^),flags=gcobject
 * @param allowedEffects cast=(DragDropEffects)
 */
public static final native int DragDrop_DoDragDrop(int dragSource, int data, int allowedEffects);
/**
 * @method flags=getter
 * @param sender cast=(DragEventArgs^),flags=gcobject
 */
public static final native int DragEventArgs_AllowedEffects (int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(DragEventArgs^),flags=gcobject
 */
public static final native int DragEventArgs_Data (int sender);
/**
 * @method flags=getter
 * @param sender cast=(DragEventArgs^),flags=gcobject
 */
public static final native int DragEventArgs_Effects (int sender);
/**
 * @method flags=setter
 * @param sender cast=(DragEventArgs^),flags=gcobject
 * @param effects cast=(DragDropEffects)
 */
public static final native void DragEventArgs_Effects (int sender, int effects);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(DragEventArgs^),flags=gcobject
 * @param relativeTo cast=(IInputElement^),flags=gcobject
 */
public static final native int DragEventArgs_GetPosition (int sender, int relativeTo);
/**
 * @method flags=getter
 * @param sender cast=(DragEventArgs^),flags=gcobject
 */
public static final native int DragEventArgs_KeyStates (int sender);
/** @method accessor=System::Drawing::Color::FromArgb,flags=gcobject */
public static final native int DrawingColor_FromArgb(int a, int r, int g, int b);
/**
 * @method flags=cpp
 * @param sender cast=(System::Drawing::Color^),flags=gcobject
 */
public static final native int DrawingColor_ToArgb(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 */
public static final native void DrawingContext_Close(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param Drawing cast=(System::Windows::Media::Drawing^),flags=gcobject
 */
public static final native void DrawingContext_DrawDrawing(int sender, int Drawing);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 * @param pen cast=(Pen^),flags=gcobject
 * @param center cast=(Point),flags=gcobject
 */
public static final native void DrawingContext_DrawEllipse(int sender, int brush, int pen, int center, double radiusX, double radiusY);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param imagesource cast=(ImageSource^),flags=gcobject
 * @param rect cast=(Rect),flags=gcobject
 */
public static final native void DrawingContext_DrawImage(int sender, int imagesource, int rect);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param pen cast=(Pen^),flags=gcobject
 * @param point0 cast=(Point),flags=gcobject
 * @param point1 cast=(Point),flags=gcobject
 */
public static final native void DrawingContext_DrawLine(int sender, int pen, int point0, int point1);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 * @param pen cast=(Pen^),flags=gcobject
 * @param geometry cast=(Geometry^),flags=gcobject
 */
public static final native void DrawingContext_DrawGeometry(int sender, int brush, int pen, int geometry);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 * @param pen cast=(Pen^),flags=gcobject
 * @param rect cast=(Rect),flags=gcobject
 */
public static final native void DrawingContext_DrawRectangle(int sender, int brush, int pen, int rect);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 * @param pen cast=(Pen^),flags=gcobject
 * @param rect cast=(Rect),flags=gcobject
 */
public static final native void DrawingContext_DrawRoundedRectangle(int sender, int brush, int pen, int rect, double radiusX, double radiusY);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param formattedText cast=(FormattedText^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native void DrawingContext_DrawText(int sender, int formattedText, int point);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Drawing::FontFamily^),flags=gcobject
 */
public static final native int DrawingFontFamily_Name(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param transform cast=(Transform^),flags=gcobject
 */
public static final native void DrawingContext_PushTransform(int sender, int transform);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 * @param clipGeometry cast=(Geometry^),flags=gcobject
 */
public static final native void DrawingContext_PushClip(int sender, int clipGeometry);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 */
public static final native void DrawingContext_PushOpacity(int sender, double opacity);
/**
 * @method flags=cpp
 * @param sender cast=(DrawingContext^),flags=gcobject
 */
public static final native void DrawingContext_Pop(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(DrawingVisual^),flags=gcobject
 */
public static final native int DrawingVisual_Drawing(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(DrawingVisual^),flags=gcobject
 */
public static final native int DrawingVisual_RenderOpen(int sender);
/** @method accessor=DrawingVisual::typeid,flags=const gcobject */
public static final native int DrawingVisual_typeid();
/** @method accessor=EditingCommands::Backspace,flags=const gcobject */
public static final native int EditingCommands_Backspace();
/** @method accessor=EditingCommands::Delete,flags=const gcobject */
public static final native int EditingCommands_Delete();
/** @method accessor=EditingCommands::DeleteNextWord,flags=const gcobject */
public static final native int EditingCommands_DeleteNextWord();
/** @method accessor=EditingCommands::DeletePreviousWord,flags=const gcobject */
public static final native int EditingCommands_DeletePreviousWord();
/**
 * @method accessor=Environment::ExpandEnvironmentVariables,flags=gcobject
 * @param string cast=(String^),flags=gcobject
 */
public static final native int Environment_ExpandEnvironmentVariables(int string);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ExecutedRoutedEventArgs^),flags=gcobject
 */
public static final native int ExecutedRoutedEventArgs_Command(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ExecutedRoutedEventArgs^),flags=gcobject
 */
public static final native void ExecutedRoutedEventArgs_Handled(int sender, boolean handled);
/**
 * @method flags=adder
 * @param sender cast=(Expander^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void Expander_Collapsed(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(Expander^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void Expander_Expanded(int sender, int handler);
/**
 * @method flags=getter
 * @param sender cast=(Expander^),flags=gcobject
 */
public static final native boolean Expander_IsExpanded(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Expander^),flags=gcobject
 */
public static final native void Expander_IsExpanded(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(FileDialog^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void FileDialog_FileName(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(FileDialog^),flags=gcobject
 */
public static final native int FileDialog_FileNames(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FileDialog^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void FileDialog_Filter(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(FileDialog^),flags=gcobject
 */
public static final native int FileDialog_FilterIndex(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FileDialog^),flags=gcobject
 */
public static final native void FileDialog_FilterIndex(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(FileDialog^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void FileDialog_InitialDirectory(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(FileDialog^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void FileDialog_Title(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::IO::FileInfo^),flags=gcobject
 */
public static final native int FileInfo_DirectoryName(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::IO::FileInfo^),flags=gcobject
 */
public static final native int FileInfo_Name(int sender);
/**
 * @method accessor=System::IO::File::Exists
 * @param sender cast=(String^),flags=gcobject
 */
public static final native boolean File_Exists(int sender);
/**
 * @method accessor=System::IO::File::ReadAllText,flags=gcobject
 * @param sender cast=(String^),flags=gcobject
 */
public static final native int File_ReadAllText(int sender);
/**
 * @method accessor=FocusManager::GetFocusScope,flags=gcobject
 * @param element cast=(DependencyObject^),flags=gcobject
 */
public static final native int FocusManager_GetFocusScope(int element);
/**
 * @method accessor=FocusManager::GetFocusedElement,flags=gcobject
 * @param element cast=(DependencyObject^),flags=gcobject
 */
public static final native int FocusManager_GetFocusedElement(int element);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::FolderBrowserDialog^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void FolderBrowserDialog_Description(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::FolderBrowserDialog^),flags=gcobject
 */
public static final native int FolderBrowserDialog_SelectedPath(int sender);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::FolderBrowserDialog^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void FolderBrowserDialog_SelectedPath(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Drawing::Font^),flags=gcobject
 */
public static final native int Font_FontFamily(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Drawing::Font^),flags=gcobject
 */
public static final native int Font_Size(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Drawing::Font^),flags=gcobject
 */
public static final native int Font_Style(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::FontDialog^),flags=gcobject
 */
public static final native int FontDialog_Color(int sender);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::FontDialog^),flags=gcobject
 * @param value cast=(System::Drawing::Color),flags=gcobject
 */
public static final native void FontDialog_Color(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::FontDialog^),flags=gcobject
 */
public static final native int FontDialog_Font(int sender);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::FontDialog^),flags=gcobject
 * @param value cast=(System::Drawing::Font^),flags=gcobject
 */
public static final native void FontDialog_Font(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::FontDialog^),flags=gcobject
 */
public static final native void FontDialog_ShowColor (int sender, boolean value);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(FontFamily^),flags=gcobject
 */
public static final native int FontFamily_GetTypefaces(int sender);
/**
 * @method flags=getter
 * @param sender cast=(FontFamily^),flags=gcobject
 */
public static final native double FontFamily_LineSpacing(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(FontFamily^),flags=gcobject
 */
public static final native int FontFamily_Source(int sender);
/** @method accessor=FontStyles::Italic,flags=const gcobject */
public static final native int FontStyles_Italic();
/** @method accessor=FontStyles::Normal,flags=const gcobject */
public static final native int FontStyles_Normal();
/** @method accessor=FontStyles::Oblique,flags=const gcobject */
public static final native int FontStyles_Oblique();
/** @method accessor=FontWeight::FromOpenTypeWeight,flags=gcobject */
public static final native int FontWeight_FromOpenTypeWeight(int weight);
/**
 * @method flags=cpp
 * @param sender cast=(FontWeight^),flags=gcobject
 */
public static final native int FontWeight_ToOpenTypeWeight(int sender);
/** @method accessor=FontWeights::Bold,flags=const gcobject */
public static final native int FontWeights_Bold();
/** @method accessor=FontWeights::Normal,flags=const gcobject */
public static final native int FontWeights_Normal();
/** @method accessor=FontStretches::Normal,flags=const gcobject */
public static final native int FontStretches_Normal();
/** @method accessor=FontStretch::FromOpenTypeStretch,flags=gcobject */
public static final native int FontStretch_FromOpenTypeStretch(int stretch);
/**
 * @method flags=cpp
 * @param sender cast=(FontStretch^),flags=gcobject
 */
public static final native int FontStretch_ToOpenTypeStretch(int sender);
/**
 * @method accessor=Fonts::GetTypefaces,flags=gcobject
 * @param uri cast=(String^),flags=gcobject
 */
public static final native int Fonts_GetTypefaces(int uri);
/** @method accessor=Fonts::SystemTypefaces,flags=const gcobject */
public static final native int Fonts_SystemTypefaces();
/**
 * @method flags=getter
 * @param sender cast=(FormattedText^),flags=gcobject
 */
public static final native double FormattedText_Baseline(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(FormattedText^),flags=gcobject
 * @param origin cast=(Point),flags=gcobject
 */
public static final native int FormattedText_BuildGeometry(int sender, int origin);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(FormattedText^),flags=gcobject
 * @param origin cast=(Point),flags=gcobject
 */
public static final native int FormattedText_BuildHighlightGeometry(int sender, int origin);
/**
 * @method flags=getter
 * @param sender cast=(FormattedText^),flags=gcobject
 */
public static final native double FormattedText_Height(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(FormattedText^),flags=gcobject
 * @param decorations cast=(TextDecorationCollection^),flags=gcobject
 */
public static final native void FormattedText_SetTextDecorations(int sender, int decorations, int startIndex, int count);
/**
 * @method flags=getter
 * @param sender cast=(FormattedText^),flags=gcobject
 */
public static final native double FormattedText_WidthIncludingTrailingWhitespace(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(System::Windows::Forms::CommonDialog^),flags=gcobject
 */
public static final native int FormsCommonDialog_ShowDialog(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Windows::Forms::MouseEventArgs^),flags=gcobject
 */
public static final native int FormsMouseEventArgs_Button(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native boolean Frame_CanGoBack(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native boolean Frame_CanGoForward(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native int Frame_CurrentSource(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native int Frame_Source(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Frame^),flags=gcobject
 * @param uri cast=(Uri^),flags=gcobject
 */
public static final native void Frame_Source(int sender, int uri);
/**
 * @method flags=cpp
 * @param sender cast=(Frame^),flags=gcobject
 * @param uri cast=(Uri^),flags=gcobject
 */
public static final native boolean Frame_Navigate(int sender, int uri);
/**
 * @method flags=setter
 * @param sender cast=(Frame^),flags=gcobject
 * @param visiblity cast=(System::Windows::Navigation::NavigationUIVisibility)
 */
public static final native void Frame_NavigationUIVisibility(int sender, int visiblity);
/**
 * @method flags=cpp
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native void Frame_GoBack(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native void Frame_GoForward(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native void Frame_Refresh(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Frame^),flags=gcobject
 */
public static final native void Frame_StopLoading(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkContentElement^),flags=gcobject
 */
public static final native int FrameworkContentElement_Parent(int sender);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkContentElement^),flags=gcobject
 */
public static final native int FrameworkContentElement_Tag(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkContentElement^),flags=gcobject
 */
public static final native void FrameworkContentElement_Tag(int sender, int value);
/** @method accessor=FrameworkContentElement::typeid,flags=const gcobject */
public static final native int FrameworkContentElement_typeid();
/**
 * @method flags=cpp
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_BeginInit(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_BringIntoView(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(ContextMenu^),flags=gcobject
 */
public static final native void FrameworkElement_ContextMenu(int sender, int value);
/**
 * @method flags=adder
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param handler cast=(ContextMenuEventHandler^),flags=gcobject
 */
public static final native void FrameworkElement_ContextMenuClosing(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param handler cast=(ContextMenuEventHandler^),flags=gcobject
 */
public static final native void FrameworkElement_ContextMenuOpening(int sender, int handler);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param cursor cast=(Cursor^),flags=gcobject
 */
public static final native void FrameworkElement_Cursor(int sender, int cursor);
/** @method accessor=FrameworkElement::CursorProperty,flags=const gcobject */
public static final native int FrameworkElement_CursorProperty();
/** @method accessor=FrameworkElement::ActualHeightProperty,flags=const gcobject */
public static final native int FrameworkElement_ActualHeightProperty();
/** @method accessor=FrameworkElement::ActualWidthProperty,flags=const gcobject */
public static final native int FrameworkElement_ActualWidthProperty();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param key cast=(Object^),flags=gcobject
 */
public static final native int FrameworkElement_FindResource(int sender, int key);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param style cast=(Style^),flags=gcobject
 */
public static final native void FrameworkElement_FocusVisualStyle(int sender, int style);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_FlowDirection(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(FlowDirection)
 */
public static final native void FrameworkElement_FlowDirection(int sender, int value);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 */
public static final native int FrameworkElement_GetBindingExpression(int sender, int dp);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(HorizontalAlignment)
 */
public static final native void FrameworkElement_HorizontalAlignment(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native boolean FrameworkElement_IsLoaded(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(Transform^),flags=gcobject
 */
public static final native void FrameworkElement_LayoutTransform(int sender, int value);
/**
 * @method flags=adder
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void FrameworkElement_Loaded(int sender, int handler);
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_Margin(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(Thickness),flags=gcobject
 */
public static final native void FrameworkElement_Margin(int sender, int value);
/** @method accessor=FrameworkElement::MarginProperty,flags=const gcobject */
public static final native int FrameworkElement_MarginProperty();
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_Name(int sender);
/** @method accessor=FrameworkElement::NameProperty,flags=const gcobject */
public static final native int FrameworkElement_NameProperty();
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_Parent(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_RenderTransform(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(Transform^),flags=gcobject
 */
public static final native void FrameworkElement_RenderTransform(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_Style(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(Style^),flags=gcobject
 */
public static final native void FrameworkElement_Style(int sender, int value);
/** @method accessor=FrameworkElement::StyleProperty,flags=const gcobject */
public static final native int FrameworkElement_StyleProperty();
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_Tag(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param tag cast=(Object^),flags=gcobject
 */
public static final native void FrameworkElement_Tag(int sender, int tag);
/** @method accessor=FrameworkElement::TagProperty,flags=const gcobject */
public static final native int FrameworkElement_TagProperty();
/** @method accessor=FrameworkElement::typeid,flags=const gcobject */
public static final native int FrameworkElement_typeid();
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_ToolTip(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void FrameworkElement_ToolTip(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_MaxHeight(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_MaxHeight(int sender, double height);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_MaxWidth(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_MaxWidth(int sender, double width);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_MinHeight(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_MinHeight(int sender, double height);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_MinWidth(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_MinWidth(int sender, double width);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_Height(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_Height(int sender, double height);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_Width(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native void FrameworkElement_Width(int sender, double width);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_ActualWidth(int sender);
/**
 * @method flags=getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native double FrameworkElement_ActualHeight(int sender);
/** @method accessor=FrameworkElement::WidthProperty,flags=const gcobject */
public static final native int FrameworkElement_WidthProperty();
/** @method accessor=FrameworkElement::HeightProperty,flags=const gcobject */
public static final native int FrameworkElement_HeightProperty();
/**
 * @method flags=adder
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param handler cast=(SizeChangedEventHandler^),flags=gcobject
 */
public static final native void FrameworkElement_SizeChanged(int sender, int handler);
/** @method accessor=FrameworkElement::SizeChangedEvent,flags=const gcobject */
public static final native int FrameworkElement_SizeChangedEvent();
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param str cast=(VerticalAlignment)
 */
public static final native void FrameworkElement_VerticalAlignment(int sender, int str);
/** @method accessor=FrameworkElement::VerticalAlignmentProperty,flags=const gcobject */
public static final native int FrameworkElement_VerticalAlignmentProperty();
/**
 * @method flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param value cast=(FrameworkElementFactory^),flags=gcobject
 */
public static final native void FrameworkElementFactory_AppendChild(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param binding cast=(BindingBase^),flags=gcobject
 */
public static final native void FrameworkElementFactory_SetBinding(int sender, int dp, int binding);
/**
 * @method flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Boolean)
 */
public static final native void FrameworkElementFactory_SetValue(int sender, int dp, boolean value);
/**
 * @method flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void FrameworkElementFactory_SetValue(int sender, int dp, int value);
/**
 * @method accessor=SetValue,flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Dock)
 */
public static final native void FrameworkElementFactory_SetValueDock(int sender, int dp, int value);
/**
 * @method accessor=SetValue,flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 */
public static final native void FrameworkElementFactory_SetValueInt(int sender, int dp, int value);
/**
 * @method accessor=SetValue,flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Stretch)
 */
public static final native void FrameworkElementFactory_SetValueStretch(int sender, int dp, int value);
/**
 * @method accessor=SetValue,flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Orientation)
 */
public static final native void FrameworkElementFactory_SetValueOrientation(int sender, int dp, int value);
/**
 * @method accessor=SetValue,flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(VerticalAlignment)
 */
public static final native void FrameworkElementFactory_SetValueVerticalAlignment(int sender, int dp, int value);
/**
 * @method accessor=SetValue,flags=cpp
 * @param sender cast=(FrameworkElementFactory^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Visibility)
 */
public static final native void FrameworkElementFactory_SetValueVisibility(int sender, int dp, byte value);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(FrameworkTemplate^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 * @param parent cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkTemplate_FindName(int sender, int name, int parent);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkTemplate^),flags=gcobject
 * @param value cast=(FrameworkElementFactory^),flags=gcobject
 */
public static final native void FrameworkTemplate_VisualTree(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(Freezable^),flags=gcobject
 */
public static final native boolean Freezable_CanFreeze(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Freezable^),flags=gcobject
 */
public static final native int Freezable_Clone(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Freezable^),flags=gcobject
 */
public static final native void Freezable_Freeze(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(GeometryCollection^),flags=gcobject
 */
public static final native void GeometryCollection_Clear(int sender);
/**
 * @method flags=getter
 * @param sender cast=(GeometryCollection^),flags=gcobject
 */
public static final native int GeometryCollection_Count(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(GeometryCollection^),flags=gcobject
 * @param geometry cast=(Geometry^),flags=gcobject
 */
public static final native void GeometryCollection_Add(int sender, int geometry);
/**
 * @method flags=cpp
 * @param sender cast=(GeometryCollection^),flags=gcobject
 * @param geometry cast=(Geometry^),flags=gcobject
 */
public static final native void GeometryCollection_Remove(int sender, int geometry);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Geometry^),flags=gcobject
 */
public static final native int Geometry_Clone(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Geometry^),flags=gcobject
 */
public static final native int Geometry_Bounds(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Geometry^),flags=gcobject
 */
public static final native int Geometry_GetFlattenedPathGeometry(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Geometry^),flags=gcobject
 * @param type cast=(ToleranceType)
 */
public static final native int Geometry_GetFlattenedPathGeometry(int sender, double tolerance, int type);
/**
 * @method flags=cpp
 * @param sender cast=(Geometry^),flags=gcobject
 */
public static final native boolean Geometry_IsEmpty(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Geometry^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native boolean Geometry_FillContains(int sender, int point);
/**
 * @method flags=cpp
 * @param sender cast=(Geometry^),flags=gcobject
 * @param geometry cast=(Geometry^),flags=gcobject
 */
public static final native int Geometry_FillContainsWithDetail(int sender, int geometry);
/**
 * @method flags=cpp
 * @param sender cast=(Geometry^),flags=gcobject
 * @param pen cast=(Pen^),flags=gcobject
 * @param hitPoint cast=(Point),flags=gcobject
 */
public static final native boolean Geometry_StrokeContains(int sender, int pen, int hitPoint);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Geometry^),flags=gcobject
 */
public static final native int Geometry_Transform(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Geometry^),flags=gcobject
 * @param transform cast=(Transform^),flags=gcobject
 */
public static final native void Geometry_Transform(int sender, int transform);
/**
 * @method flags=gcobject getter
 * @param sender cast=(GeometryGroup^),flags=gcobject
 */
public static final native int GeometryGroup_Children(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(GeometryGroup^),flags=gcobject
 */
public static final native int GeometryGroup_Children(int sender, int index);
/**
 * @method flags=getter
 * @param sender cast=(GiveFeedbackEventArgs^),flags=gcobject
 */
public static final native int GiveFeedbackEventArgs_Effects (int sender);
/**
 * @method flags=getter
 * @param sender cast=(GlyphRun^),flags=gcobject
 */
public static final native int GlyphRun_BidiLevel(int sender);
/**
 * @method flags=setter
 * @param sender cast=(GradientBrush^),flags=gcobject
 * @param mode cast=(BrushMappingMode)
 */
public static final native void GradientBrush_MappingMode(int sender, int mode);
/**
 * @method flags=setter
 * @param sender cast=(GradientBrush^),flags=gcobject
 * @param method cast=(GradientSpreadMethod)
 */
public static final native void GradientBrush_SpreadMethod(int sender, int method);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Grid^),flags=gcobject
 */
public static final native int Grid_ColumnDefinitions(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Grid^),flags=gcobject
 */
public static final native int Grid_RowDefinitions(int sender);
/**
 * @method accessor=Grid::SetColumn
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native void Grid_SetColumn(int element, int index);
/**
 * @method accessor=Grid::SetColumnSpan
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native void Grid_SetColumnSpan(int element, int value);
/**
 * @method accessor=Grid::SetRow
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native void Grid_SetRow(int element, int index);
/**
 * @method accessor=Grid::SetRowSpan
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native void Grid_SetRowSpan(int element, int value);
/**
 * @method flags=setter
 * @param sender cast=(GridView^),flags=gcobject
 * @param style cast=(Style^),flags=gcobject
 */
public static final native void GridView_ColumnHeaderContainerStyle(int sender, int style);
/**
 * @method flags=gcobject getter
 * @param sender cast=(GridView^),flags=gcobject
 */
public static final native int GridView_Columns(int sender);
/**
 * @method flags=setter
 * @param sender cast=(GridView^),flags=gcobject
 */
public static final native void GridView_AllowsColumnReorder(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 */
public static final native double GridViewColumn_ActualWidth(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 */
public static final native int GridViewColumn_CellTemplate(int sender);
/**
 * @method flags=setter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 * @param value cast=(DataTemplate^),flags=gcobject
 */
public static final native void GridViewColumn_CellTemplate(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 */
public static final native int GridViewColumn_Header(int sender);
/**
 * @method flags=setter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void GridViewColumn_Header(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 */
public static final native int GridViewColumn_HeaderTemplate(int sender);
/**
 * @method flags=setter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 * @param value cast=(DataTemplate^),flags=gcobject
 */
public static final native void GridViewColumn_HeaderTemplate(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 */
public static final native double GridViewColumn_Width(int sender);
/**
 * @method flags=setter
 * @param sender cast=(GridViewColumn^),flags=gcobject
 */
public static final native void GridViewColumn_Width(int sender, double value);
/** @method accessor=GridViewColumn::WidthProperty,flags=const gcobject */
public static final native int GridViewColumn_WidthProperty();
/**
 * @method flags=gcobject getter
 * @param sender cast=(GridViewColumnCollection^),flags=gcobject
 */
public static final native int GridViewColumnCollection_default(int sender, int index);
/**
 * @method flags=cpp
 * @param sender cast=(GridViewColumnCollection^),flags=gcobject
 */
public static final native void GridViewColumnCollection_Clear(int sender);
/**
 * @method flags=getter
 * @param sender cast=(GridViewColumnCollection^),flags=gcobject
 */
public static final native int GridViewColumnCollection_Count(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(GridViewColumnCollection ^),flags=gcobject
 * @param item cast=(GridViewColumn^),flags=gcobject
 */
public static final native int GridViewColumnCollection_IndexOf(int sender, int item);
/**
 * @method flags=cpp
 * @param sender cast=(GridViewColumnCollection^),flags=gcobject
 * @param value cast=(GridViewColumn^),flags=gcobject
 */
public static final native void GridViewColumnCollection_Insert(int sender, int index, int value);
/**
 * @method flags=cpp
 * @param sender cast=(GridViewColumnCollection^),flags=gcobject
 * @param value cast=(GridViewColumn^),flags=gcobject
 */
public static final native boolean GridViewColumnCollection_Remove(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(GridViewColumnHeader^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void GridViewColumnHeader_Content(int sender, int value);
/** @method accessor=GridViewRowPresenterBase::ColumnsProperty,flags=const gcobject */
public static final native int GridViewRowPresenterBase_ColumnsProperty();
/** @method accessor=GridViewHeaderRowPresenter::typeid,flags=const gcobject */
public static final native int GridViewHeaderRowPresenter_typeid();
/**
 * @method flags=setter
 * @param sender cast=(GridViewRowPresenter^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void GridViewRowPresenter_Content(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(GridViewRowPresenter^),flags=gcobject
 */
public static final native int GridViewRowPresenter_Content(int sender);
/** @method accessor=GridViewRowPresenter::typeid,flags=const gcobject */
public static final native int GridViewRowPresenter_typeid();
/**
 * @method flags=setter
 * @param sender cast=(GridViewRowPresenterBase^),flags=gcobject
 * @param value cast=(GridViewColumnCollection^),flags=gcobject
 */
public static final native void GridViewRowPresenterBase_Columns(int sender, int value);
/** @method flags=no_gen */
public static final native int GCHandle_Alloc(int sender);
/** @method flags=no_gen */
public static final native void GCHandle_Free(int sender);
/** @method flags=no_gen */
public static final native void GCHandle_Dump();
/** @method flags=no_gen */
public static final native int GCHandle_ToHandle(int gchandle);
/**
 * @method flags=gcobject getter
 * @param sender cast=(HeaderedContentControl^),flags=gcobject
 */
public static final native int HeaderedContentControl_Header(int sender);
/**
 * @method flags=setter
 * @param sender cast=(HeaderedContentControl^),flags=gcobject
 * @param header cast=(Object^),flags=gcobject
 */
public static final native void HeaderedContentControl_Header(int sender, int header);
/**
 * @method flags=gcobject getter
 * @param sender cast=(HeaderedItemsControl^),flags=gcobject
 */
public static final native int HeaderedItemsControl_Header(int sender);
/**
 * @method flags=setter
 * @param sender cast=(HeaderedItemsControl^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void HeaderedItemsControl_Header(int sender, int value);  
/** @method accessor=HeaderedItemsControl::HeaderTemplateProperty,flags=const gcobject */
public static final native int HeaderedItemsControl_HeaderTemplateProperty();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(System::Windows::Forms::HtmlDocument^),flags=gcobject
 * @param string cast=(String^),flags=gcobject
 */
public static final native int HtmlDocument_InvokeScript(int sender, int string);
/**
 * @method flags=gcobject getter
 * @param sender cast=(HwndSource^),flags=gcobject
 */
public static final native int HwndSource_Handle(int sender);
/**
 * @method flags=adder
 * @param sender cast=(Hyperlink^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void Hyperlink_Click(int sender, int handler);
/**
 * @method flags=getter
 * @param sender cast=(ICollection^),flags=gcobject
 */
public static final native int ICollection_Count(int sender);
/**
 * @method accessor=System::Drawing::Icon::FromHandle,flags=no_gen gcobject
 * @param hIcon cast=(IntPtr),flags=gcobject
 */
public static final native int Icon_FromHandle(int hIcon);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(IEnumerable ^),flags=gcobject
 */
public static final native int IEnumerable_GetEnumerator(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(IEnumerator^),flags=gcobject
 */
public static final native int IEnumerator_Current(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(IEnumerator^),flags=gcobject
 */
public static final native boolean IEnumerator_MoveNext(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(IList^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void IList_Add(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(IList^),flags=gcobject
 */
public static final native void IList_Clear(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(IList^),flags=gcobject
 */
public static final native int IList_default(int sender, int index);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(IList^),flags=gcobject
 */
public static final native int IList_GetEnumerator(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(IList^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native int IList_IndexOf(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(IList^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void IList_Insert(int sender, int index, int value);
/**
 * @method flags=cpp
 * @param sender cast=(IList^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void IList_Remove(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(IndexedGlyphRun^),flags=gcobject
 */
public static final native int IndexedGlyphRun_TextSourceCharacterIndex(int sender);
/**
 * @method flags=getter
 * @param sender cast=(IndexedGlyphRun^),flags=gcobject
 */
public static final native int IndexedGlyphRun_TextSourceLength(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(IndexedGlyphRun^),flags=gcobject
 */
public static final native int IndexedGlyphRun_GlyphRun(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(IEnumerable^),flags=gcobject
 */
public static final native int IndexedGlyphRunCollection_GetEnumerator(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(IEnumerator^),flags=gcobject
 */
public static final native int IndexedGlyphRunCollection_Current(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(InlineCollection^),flags=gcobject
 * @param value cast=(Inline^),flags=gcobject
 */
public static final native void InlineCollection_Add(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(InlineCollection^),flags=gcobject
 */
public static final native void InlineCollection_Clear(int sender);
/**
 * @method flags=getter
 * @param sender cast=(InputEventArgs^),flags=gcobject
 */
public static final native int InputEventArgs_Timestamp(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Image^),flags=gcobject
 */
public static final native int Image_Source(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Image^),flags=gcobject
 * @param imageSource cast=(ImageSource^),flags=gcobject
 */
public static final native void Image_Source(int sender, int imageSource);
/** @method accessor=Image::SourceProperty,flags=const gcobject */
public static final native int Image_SourceProperty();
/** @method accessor=Image::StretchProperty,flags=const gcobject */
public static final native int Image_StretchProperty();
/**
 * @method flags=setter
 * @param sender cast=(Image^),flags=gcobject
 * @param stretch cast=(Stretch)
 */
public static final native void Image_Stretch(int sender, int stretch);
/** @method accessor=Image::typeid,flags=const gcobject */
public static final native int Image_typeid();
/**
 * @method accessor=System::Windows::Interop::Imaging::CreateBitmapSourceFromHIcon,flags=gcobject
 * @param hIcon cast=(IntPtr)
 * @param sourceRect cast=(Int32Rect),flags=gcobject
 * @param sizeOptions cast=(BitmapSizeOptions^),flags=gcobject
 */
public static final native int Imaging_CreateBitmapSourceFromHIcon(int hIcon, int sourceRect, int sizeOptions);
/** @method accessor=ImageSource::typeid,flags=const gcobject */
public static final native int ImageSource_typeid();
/**
 * @method flags=cpp
 * @param value cast=(IntPtr^),flags=gcobject
 */
public static final native int IntPtr_ToInt32 (int value);
/**
 * @method flags=cpp
 * @param sender cast=(ItemCollection^),flags=gcobject
 * @param item cast=(Object^),flags=gcobject
 */
public static final native void ItemCollection_Add(int sender, int item);
/**
 * @method flags=cpp
 * @param sender cast=(ItemCollection^),flags=gcobject
 */
public static final native void ItemCollection_Clear(int sender);
/**
 * @method flags=getter
 * @param sender cast=(ItemCollection^),flags=gcobject
 */
public static final native int ItemCollection_Count(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ItemCollection^),flags=gcobject
 */
public static final native int ItemCollection_CurrentItem(int sender);
/**
 * @method flags=getter
 * @param sender cast=(ItemCollection^),flags=gcobject
 */
public static final native int ItemCollection_CurrentPosition(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(ItemCollection^),flags=gcobject
 */
public static final native int ItemCollection_GetItemAt(int sender, int index);
/**
 * @method flags=cpp
 * @param sender cast=(ItemCollection^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native int ItemCollection_IndexOf(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(ItemCollection^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void ItemCollection_Insert(int sender, int index, int value);
/**
 * @method flags=cpp
 * @param sender cast=(ItemCollection^),flags=gcobject
 * @param item cast=(Object^),flags=gcobject
 */
public static final native void ItemCollection_Remove(int sender, int item);
/**
 * @method flags=cpp
 * @param sender cast=(ItemCollection^),flags=gcobject
 */
public static final native void ItemCollection_RemoveAt(int sender, int index);
/**
 * @method flags=getter
 * @param sender cast=(ItemsControl^),flags=gcobject
 */
public static final native boolean ItemsControl_HasItems(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ItemsControl^),flags=gcobject
 */
public static final native int ItemsControl_Items(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ItemsControl^),flags=gcobject
 * @param value cast=(IEnumerable^),flags=gcobject
 */
public static final native void ItemsControl_ItemsSource(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ItemsControl^),flags=gcobject
 */
public static final native int ItemsControl_ItemTemplate(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ItemsControl^),flags=gcobject
 * @param value cast=(DataTemplate^),flags=gcobject
 */
public static final native void ItemsControl_ItemTemplate(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(ItemsControl^),flags=gcobject
 */
public static final native void ItemsControl_IsTextSearchEnabled(int sender, boolean value);
/** @method accessor=ItemsPresenter::typeid,flags=const gcobject */
public static final native int ItemsPresenter_typeid();
/**
 * @method accessor=KeyInterop::VirtualKeyFromKey
 * @param key cast=(Key)
 */
public static final native int KeyInterop_VirtualKeyFromKey(int key);
/** @method accessor=Keyboard::FocusedElement,flags=const gcobject */
public static final native int Keyboard_FocusedElement();
/**
 * @method accessor=Keyboard::Focus,flags=gcobject
 * @param element cast=(IInputElement^),flags=gcobject
 */
public static final native int Keyboard_Focus(int element);
/** @method accessor=Keyboard::Modifiers,flags=const */
public static final native int Keyboard_Modifiers();
/**
 * @method accessor=KeyboardNavigation::GetIsTabStop
 * @param element cast=(DependencyObject^),flags=gcobject
 */
public static final native boolean KeyboardNavigation_GetIsTabStop(int element);
/**
 * @method accessor=KeyboardNavigation::SetIsTabStop
 * @param element cast=(DependencyObject^),flags=gcobject
 */
public static final native void KeyboardNavigation_SetIsTabStop(int element, boolean istabstop);
/**
 * @method accessor=KeyboardNavigation::SetDirectionalNavigation
 * @param element cast=(DependencyObject^),flags=gcobject
 * @param mode cast=(KeyboardNavigationMode)
 */
public static final native void KeyboardNavigation_SetDirectionalNavigation(int element, int mode);
/**
 * @method accessor=KeyboardNavigation::SetTabNavigation
 * @param element cast=(DependencyObject^),flags=gcobject
 * @param mode cast=(KeyboardNavigationMode)
 */
public static final native void KeyboardNavigation_SetTabNavigation(int element, int mode);
/**
 * @method accessor=KeyboardNavigation::SetControlTabNavigation
 * @param element cast=(DependencyObject^),flags=gcobject
 * @param mode cast=(KeyboardNavigationMode)
 */
public static final native void KeyboardNavigation_SetControlTabNavigation(int element, int mode);
/**
 * @method flags=getter
 * @param sender cast=(KeyboardDevice^),flags=gcobject
 */
public static final native int KeyboardDevice_Modifiers(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(KeyboardEventArgs^),flags=gcobject
 */
public static final native int KeyboardEventArgs_KeyboardDevice(int sender);
/**
 * @method flags=getter
 * @param sender cast=(KeyEventArgs^),flags=gcobject
 */
public static final native boolean KeyEventArgs_IsDown(int sender);
/**
 * @method flags=getter
 * @param sender cast=(KeyEventArgs^),flags=gcobject
 */
public static final native boolean KeyEventArgs_IsRepeat(int sender);
/**
 * @method flags=getter
 * @param sender cast=(KeyEventArgs^),flags=gcobject
 */
public static final native boolean KeyEventArgs_IsToggled(int sender);
/**
 * @method flags=getter
 * @param sender cast=(KeyEventArgs^),flags=gcobject
 */
public static final native int KeyEventArgs_Key(int sender);
/**
 * @method flags=getter
 * @param sender cast=(KeyEventArgs^),flags=gcobject
 */
public static final native int KeyEventArgs_SystemKey(int sender);
/** @method accessor=KeyTime::Uniform,flags=const gcobject */
public static final native int KeyTime_Uniform();
/**
 * @method flags=getter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native boolean Matrix_IsIdentity(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_Invert(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native double Matrix_M11(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native double Matrix_M12(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native double Matrix_M21(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native double Matrix_M22(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native double Matrix_OffsetX(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native double Matrix_OffsetY(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_M11(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_M12(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_M21(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_M22(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_OffsetX(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_OffsetY(int sender, double value);
/**
 * @method accessor=Matrix::Multiply,flags=gcobject
 * @param m1 cast=(Matrix),flags=gcobject
 * @param m2 cast=(Matrix),flags=gcobject
 */
public static final native int Matrix_Multiply(int m1, int m2);
/**
 * @method flags=cpp
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_RotatePrepend(int sender, double angle);
/**
 * @method flags=cpp
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_ScalePrepend(int sender, double scaleX, double scaleY);
/**
 * @method flags=cpp
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_SetIdentity(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_SkewPrepend(int sender, double skewX, double skewY);
/**
 * @method flags=cpp
 * @param sender cast=(Matrix^),flags=gcobject
 */
public static final native void Matrix_TranslatePrepend(int sender, double tx, double ty);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Matrix^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native int Matrix_Transform(int sender, int point);
/**
 * @method accessor=MessageBox::Show
 * @param messageBoxText cast=(String^),flags=gcobject
 * @param caption cast=(String^),flags=gcobject
 * @param button cast=(MessageBoxButton)
 * @param icon cast=(MessageBoxImage)
 * @param defaultResult cast=(MessageBoxResult)
 */
public static final native int MessageBox_Show (int messageBoxText, int caption, int button, int icon,	int defaultResult);
/** @method accessor=Mouse::Captured,flags=const gcobject */
public static final native int Mouse_Captured();
/** @method accessor=Mouse::DirectlyOver,flags=const gcobject */
public static final native int Mouse_DirectlyOver();
/**
 * @method accessor=Mouse::GetPosition,flags=gcobject
 * @param relativeTo cast=(IInputElement^),flags=gcobject
 */
public static final native int Mouse_GetPosition(int relativeTo);
/**
 * @method accessor=Mouse::SetCursor
 * @param cursor cast=(Cursor^),flags=gcobject
 */
public static final native boolean Mouse_SetCursor(int cursor);
/** @method accessor=Mouse::LeftButton,flags=const */
public static final native int Mouse_LeftButton();
/** @method accessor=Mouse::RightButton,flags=const */
public static final native int Mouse_RightButton();
/** @method accessor=Mouse::MiddleButton,flags=const */
public static final native int Mouse_MiddleButton();
/** @method accessor=Mouse::XButton1,flags=const */
public static final native int Mouse_XButton1();
/** @method accessor=Mouse::XButton2,flags=const */
public static final native int Mouse_XButton2();
/**
 * @method flags=getter
 * @param sender cast=(MouseButtonEventArgs^),flags=gcobject
 */
public static final native int MouseButtonEventArgs_ButtonState(int sender);
/**
 * @method flags=getter
 * @param sender cast=(MouseButtonEventArgs^),flags=gcobject
 */
public static final native int MouseButtonEventArgs_ClickCount(int sender);
/**
 * @method flags=getter
 * @param sender cast=(MouseButtonEventArgs^),flags=gcobject
 */
public static final native int MouseButtonEventArgs_ChangedButton(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(MouseEventArgs^),flags=gcobject
 * @param relativeTo cast=(IInputElement^),flags=gcobject
 */
public static final native int MouseEventArgs_GetPosition(int sender, int relativeTo);
/**
 * @method flags=getter
 * @param sender cast=(MouseEventArgs^),flags=gcobject
 */
public static final native int MouseEventArgs_LeftButton(int sender);
/**
 * @method flags=getter
 * @param sender cast=(MouseEventArgs^),flags=gcobject
 */
public static final native int MouseEventArgs_MiddleButton(int sender);
/**
 * @method flags=getter
 * @param sender cast=(MouseEventArgs^),flags=gcobject
 */
public static final native int MouseEventArgs_RightButton(int sender);
/**
 * @method flags=getter
 * @param sender cast=(MouseEventArgs^),flags=gcobject
 */
public static final native int MouseEventArgs_XButton1(int sender);
/**
 * @method flags=getter
 * @param sender cast=(MouseEventArgs^),flags=gcobject
 */
public static final native int MouseEventArgs_XButton2(int sender);
/**
 * @method flags=getter
 * @param sender cast=(MouseWheelEventArgs^),flags=gcobject
 */
public static final native int MouseWheelEventArgs_Delta(int sender);
/**
 * @method flags=getter
 * @param sender cast=(ListBoxItem^),flags=gcobject
 */
public static final native boolean ListBoxItem_IsSelected(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ListBoxItem^),flags=gcobject
 */
public static final native void ListBoxItem_IsSelected(int sender, boolean value);
/**
 * @method flags=cpp
 * @param sender cast=(ListBox^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native void ListBox_ScrollIntoView(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(ListBox^),flags=gcobject
 */
public static final native void ListBox_SelectAll(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ListBox^),flags=gcobject
 */
public static final native int ListBox_SelectedItems(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ListBox^),flags=gcobject
 * @param value cast=(SelectionMode)
 */
public static final native void ListBox_SelectionMode(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(ListBox^),flags=gcobject
 */
public static final native void ListBox_UnselectAll(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ListView^),flags=gcobject
 * @param value cast=(ViewBase^),flags=gcobject
 */
public static final native void ListView_View(int sender, int value);
/** @method accessor=ListViewItem::typeid,flags=const gcobject */
public static final native int ListViewItem_typeid();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(System::IO::MemoryStream^),flags=gcobject
 */
public static final native int MemoryStream_ToArray(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(System::IO::MemoryStream^),flags=gcobject
 * @param buffer cast=(array<Byte>^),flags=gcobject
 */
public static final native void MemoryStream_Write(int sender, int buffer, int offset, int count);
/**
 * @method flags=setter
 * @param sender cast=(Menu^),flags=gcobject
 */
public static final native void Menu_IsMainMenu(int sender, boolean value);
/**
 * @method flags=adder
 * @param sender cast=(MenuItem^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void MenuItem_Click(int sender, int handler);
/**
 * @method flags=setter
 * @param sender cast=(MenuItem^),flags=gcobject
 * @param value cast=(Image^),flags=gcobject
 */
public static final native void MenuItem_Icon(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(MenuItem^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void MenuItem_InputGestureText(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(MenuItem^),flags=gcobject
 */
public static final native void MenuItem_IsCheckable(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(MenuItem^),flags=gcobject
 */
public static final native boolean MenuItem_IsChecked(int sender);
/**
 * @method flags=setter
 * @param sender cast=(MenuItem^),flags=gcobject
 */
public static final native void MenuItem_IsChecked(int sender, boolean value);
/**
 * @method flags=adder
 * @param sender cast=(MenuItem^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void MenuItem_SubmenuClosed(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(MenuItem^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void MenuItem_SubmenuOpened(int sender, int handler);
/** @method accessor=Int32Rect::Empty,flags=const gcobject */
public static final native int Int32Rect_Empty();
/**
 * @method flags=gcobject getter
 * @param sender cast=(MatrixTransform^),flags=gcobject
 */
public static final native int MatrixTransform_Matrix(int sender);
/**
 * @method flags=setter
 * @param sender cast=(MatrixTransform^),flags=gcobject
 * @param value cast=(Matrix),flags=gcobject
 */
public static final native void MatrixTransform_Matrix(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::NotifyIcon^),flags=gcobject
 * @param value cast=(System::Drawing::Icon^),flags=gcobject
 */
public static final native void NotifyIcon_Icon(int sender, int value);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::NotifyIcon^),flags=gcobject
 * @param handler cast=(System::Windows::Forms::MouseEventHandler^),flags=gcobject
 */
public static final native void NotifyIcon_MouseDown(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::NotifyIcon^),flags=gcobject
 * @param handler cast=(System::Windows::Forms::MouseEventHandler^),flags=gcobject
 */
public static final native void NotifyIcon_MouseUp(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::NotifyIcon^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void NotifyIcon_DoubleClick(int sender, int handler);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::NotifyIcon^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void NotifyIcon_Text(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::NotifyIcon^),flags=gcobject
 */
public static final native void NotifyIcon_Visible(int sender, boolean value);
/**
 * @method flags=cpp
 * @param sender cast=(Object ^),flags=gcobject
 * @param o cast=(Object ^),flags=gcobject
 */
public static final native boolean Object_Equals(int sender, int o);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Object ^),flags=gcobject
 */
public static final native int Object_GetType(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Object ^),flags=gcobject
 */
public static final native int Object_ToString(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(ObservableCollection<GridViewColumn^>^),flags=gcobject
 */
public static final native void ObservableCollectionGridViewColumn_Move(int sender, int oldIndex, int newIndex);
/**
 * @method flags=setter
 * @param sender cast=(OpenFileDialog^),flags=gcobject
 */
public static final native void OpenFileDialog_Multiselect (int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(RowDefinition^),flags=gcobject
 * @param height cast=(GridLength),flags=gcobject
 */
public static final native void RowDefinition_Height(int sender, int height);
/**
 * @method flags=cpp
 * @param sender cast=(RowDefinitionCollection^),flags=gcobject
 * @param row cast=(RowDefinition^),flags=gcobject
 */
public static final native void RowDefinitionCollection_Add(int sender, int row);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Panel^),flags=gcobject
 */
public static final native int Panel_Background(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Panel^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native void Panel_Background(int sender, int brush);
/** @method accessor=Panel::BackgroundProperty,flags=const gcobject */
public static final native int Panel_BackgroundProperty();
/**
 * @method flags=gcobject getter
 * @param sender cast=(Panel^),flags=gcobject
 */
public static final native int Panel_Children(int sender);
/**
 * @method accessor=Panel::GetZIndex
 * @param element cast=(UIElement^),flags=gcobject
 */
public static final native int Panel_GetZIndex(int element);
/**
 * @method accessor=Panel::SetZIndex
 * @param element cast=(UIElement ^),flags=gcobject
 */
public static final native void Panel_SetZIndex(int element, int index);
/**
 * @method flags=gcobject getter
 * @param sender cast=(PasswordBox^),flags=gcobject
 */
public static final native int PasswordBox_Password(int sender);
/**
 * @method flags=setter
 * @param sender cast=(PasswordBox^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void PasswordBox_Password(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(PasswordBox^),flags=gcobject
 */
public static final native char PasswordBox_PasswordChar(int sender);
/**
 * @method flags=setter
 * @param sender cast=(PasswordBox^),flags=gcobject
 */
public static final native void PasswordBox_PasswordChar(int sender, char value);
/**
 * @method flags=getter
 * @param sender cast=(PasswordBox^),flags=gcobject
 */
public static final native int PasswordBox_MaxLength(int sender);
/**
 * @method flags=setter
 * @param sender cast=(PasswordBox^),flags=gcobject
 */
public static final native void PasswordBox_MaxLength(int sender, int value);
/**
 * @method flags=adder
 * @param sender cast=(PasswordBox^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void PasswordBox_PasswordChanged(int sender, int handler);
/**
 * @method flags=cpp
 * @param sender cast=(PasswordBox^),flags=gcobject
 */
public static final native void PasswordBox_Paste(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Path^),flags=gcobject
 * @param geometry cast=(Geometry^),flags=gcobject
 */
public static final native void Path_Data(int sender, int geometry);
/**
 * @method flags=setter
 * @param sender cast=(Path^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native void Path_Fill(int sender, int brush);
/**
 * @method flags=setter
 * @param sender cast=(Path^),flags=gcobject
 * @param value cast=(Stretch)
 */
public static final native void Path_Stretch(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(PathFigureCollection^),flags=gcobject
 * @param element cast=(PathFigure^),flags=gcobject
 */
public static final native void PathFigureCollection_Add(int sender, int element);
/**
 * @method flags=getter
 * @param sender cast=(PathFigureCollection^),flags=gcobject
 */
public static final native int PathFigureCollection_Count(int sender);
/**
 * @method flags=setter
 * @param sender cast=(PathFigure^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native void PathFigure_StartPoint(int sender, int point);
/**
 * @method flags=setter
 * @param sender cast=(PathFigure^),flags=gcobject
 */
public static final native void PathFigure_IsClosed(int sender, boolean closed);
/**
 * @method flags=getter
 * @param sender cast=(PathFigure^),flags=gcobject
 */
public static final native boolean PathFigure_IsClosed(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(PathFigure^),flags=gcobject
 */
public static final native int PathFigure_Segments(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(PathFigure^),flags=gcobject
 */
public static final native int PathFigure_Segments(int sender, int index);
/**
 * @method flags=cpp
 * @param sender cast=(PathGeometry^),flags=gcobject
 * @param geometry cast=(Geometry^),flags=gcobject
 */
public static final native void PathGeometry_AddGeometry(int sender, int geometry);
/**
 * @method flags=gcobject getter
 * @param sender cast=(PathGeometry^),flags=gcobject
 */
public static final native int PathGeometry_Bounds(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(PathGeometry^),flags=gcobject
 */
public static final native int PathGeometry_Clone(int sender);
/**
 * @method flags=setter
 * @param sender cast=(PathGeometry^),flags=gcobject
 * @param value cast=(FillRule)
 */
public static final native void PathGeometry_FillRule(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(PathGeometry^),flags=gcobject
 */
public static final native int PathGeometry_Figures(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(PathGeometry^),flags=gcobject
 */
public static final native int PathGeometry_Figures(int sender, int index);
/**
 * @method flags=cpp
 * @param sender cast=(PathSegmentCollection^),flags=gcobject
 * @param element cast=(PathSegment^),flags=gcobject
 */
public static final native void PathSegmentCollection_Add(int sender, int element);
/**
 * @method flags=getter
 * @param sender cast=(PathSegmentCollection^),flags=gcobject
 */
public static final native int PathSegmentCollection_Count(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Pen^),flags=gcobject
 */
public static final native int Pen_Brush(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 * @param value cast=(Brush^),flags=gcobject
 */
public static final native void Pen_Brush(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 * @param value cast=(PenLineCap)
 */
public static final native void Pen_DashCap(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 * @param value cast=(DashStyle^),flags=gcobject
 */
public static final native void Pen_DashStyle(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 * @param value cast=(PenLineCap)
 */
public static final native void Pen_EndLineCap(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 * @param value cast=(PenLineCap)
 */
public static final native void Pen_StartLineCap(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 * @param value cast=(PenLineJoin)
 */
public static final native void Pen_LineJoin(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 */
public static final native void Pen_MiterLimit(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(Pen^),flags=gcobject
 */
public static final native void Pen_Thickness(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(PixelFormat^),flags=gcobject
 */
public static final native int PixelFormat_BitsPerPixel(int sender);
/** @method accessor=PixelFormats::Bgr101010,flags=const gcobject */
public static final native int PixelFormats_Bgr101010();
/** @method accessor=PixelFormats::Bgr24,flags=const gcobject */
public static final native int PixelFormats_Bgr24();
/** @method accessor=PixelFormats::Bgr32,flags=const gcobject */
public static final native int PixelFormats_Bgr32();
/** @method accessor=PixelFormats::Bgr555,flags=const gcobject */
public static final native int PixelFormats_Bgr555();
/** @method accessor=PixelFormats::Bgr565,flags=const gcobject */
public static final native int PixelFormats_Bgr565();
/** @method accessor=PixelFormats::Bgra32,flags=const gcobject */
public static final native int PixelFormats_Bgra32();
/** @method accessor=PixelFormats::BlackWhite,flags=const gcobject */
public static final native int PixelFormats_BlackWhite();
/** @method accessor=PixelFormats::Default,flags=const gcobject */
public static final native int PixelFormats_Default();
/** @method accessor=PixelFormats::Indexed1,flags=const gcobject */
public static final native int PixelFormats_Indexed1();
/** @method accessor=PixelFormats::Indexed2,flags=const gcobject */
public static final native int PixelFormats_Indexed2();
/** @method accessor=PixelFormats::Indexed4,flags=const gcobject */
public static final native int PixelFormats_Indexed4();
/** @method accessor=PixelFormats::Indexed8,flags=const gcobject */
public static final native int PixelFormats_Indexed8();
/** @method accessor=PixelFormats::Pbgra32,flags=const gcobject */
public static final native int PixelFormats_Pbgra32();
/** @method accessor=PixelFormats::Rgb24,flags=const gcobject */
public static final native int PixelFormats_Rgb24();
/**
 * @method flags=cpp
 * @param sender cast=(PointCollection^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native void PointCollection_Add(int sender, int point);
/**
 * @method flags=getter
 * @param sender cast=(Point^),flags=gcobject
 */
public static final native double Point_X(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Point^),flags=gcobject
 */
public static final native double Point_Y(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native void Popup_AllowsTransparency(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(Popup^),flags=gcobject
 * @param child cast=(UIElement^),flags=gcobject
 */
public static final native void Popup_Child(int sender, int child);
/**
 * @method flags=getter gcobject
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native int Popup_Child(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native void Popup_HorizontalOffset(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native double Popup_HorizontalOffset(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native void Popup_IsOpen(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native boolean Popup_IsOpen(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native void Popup_VerticalOffset(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Popup^),flags=gcobject
 */
public static final native double Popup_VerticalOffset(int sender);
/**
 * @method flags=adder
 * @param sender cast=(Popup^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void Popup_Closed(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(Popup^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void Popup_Opened(int sender, int handler);
/** @method accessor=PresentationSource::CurrentSources,flags=const gcobject */
public static final native int PresentationSource_CurrentSources();
/**
 * @method accessor=PresentationSource::FromVisual,flags=gcobject
 * @param visual cast=(Visual^),flags=gcobject
 */
public static final native int PresentationSource_FromVisual(int visual);
/**
 * @method flags=gcobject getter
 * @param sender cast=(PresentationSource^),flags=gcobject
 */
public static final native int PresentationSource_RootVisual(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ProgressBar ^),flags=gcobject
 */
public static final native void ProgressBar_IsIndeterminate(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(ProgressBar ^),flags=gcobject
 */
public static final native void ProgressBar_IsIndeterminate(int sender);
/**
 * @method flags=setter
 * @param handle cast=(ProgressBar ^),flags=gcobject
 * @param value cast=(Orientation)
 */
public static final native void ProgressBar_Orientation(int handle, int value);
/**
 * @method flags=cpp
 * @param sender cast=(PropertyInfo^),flags=gcobject
 * @param obj cast=(Object^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 * @param indexArray cast=(array<Object^>^),flags=gcobject
 */
public static final native void PropertyInfo_SetValue(int sender, int obj, int value, int indexArray);
/**
 * @method accessor=PropertyInfo::SetValue,flags=cpp
 * @param sender cast=(PropertyInfo^),flags=gcobject
 * @param obj cast=(Object^),flags=gcobject
 * @param value cast=(bool)
 * @param indexArray cast=(array<Object^>^),flags=gcobject
 */
public static final native void PropertyInfo_SetValueBoolean(int sender, int obj, boolean value, int indexArray);
/**
 * @method flags=getter
 * @param sender cast=(QueryContinueDragEventArgs^),flags=gcobject
 */
public static final native boolean QueryContinueDragEventArgs_EscapePressed(int sender);
/**
 * @method flags=setter
 * @param sender cast=(QueryContinueDragEventArgs^),flags=gcobject
 * @param dragAction cast=(DragAction)
 */
public static final native void QueryContinueDragEventArgs_Action(int sender, int dragAction);
/**
 * @method flags=getter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native double RangeBase_LargeChange(int sender);
/**
 * @method flags=setter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native void RangeBase_LargeChange(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native double RangeBase_Maximum(int sender);
/**
 * @method flags=setter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native void  RangeBase_Maximum(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native double RangeBase_Minimum(int sender);
/**
 * @method flags=setter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native void  RangeBase_Minimum(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native double RangeBase_SmallChange(int sender);
/**
 * @method flags=setter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native void RangeBase_SmallChange(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native double RangeBase_Value(int sender);
/**
 * @method flags=setter
 * @param sender cast=(RangeBase ^),flags=gcobject
 */
public static final native void RangeBase_Value(int sender, double value);
/**
 * @method flags=adder
 * @param sender cast=(RangeBase ^),flags=gcobject
 * @param handler cast=(RoutedPropertyChangedEventHandler<double> ^),flags=gcobject
 */
public static final native void RangeBase_ValueChanged(int sender, int handler);
/**
 * @method flags=cpp
 * @param sender cast=(Rect^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native boolean Rect_Contains(int sender, int point);
/**
 * @method flags=cpp
 * @param sender cast=(Rect^),flags=gcobject
 * @param rect cast=(Rect),flags=gcobject
 */
public static final native void Rect_Intersect(int sender, int rect);
/**
 * @method flags=cpp
 * @param sender cast=(Rect^),flags=gcobject
 * @param rect cast=(Rect),flags=gcobject
 */
public static final native void Rect_Union(int sender, int rect);
/**
 * @method flags=getter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native double Rect_X(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native void Rect_X(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native double Rect_Y(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native void Rect_Y(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native double Rect_Width(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native void Rect_Width(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native double Rect_Height(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Rect^),flags=gcobject
 */
public static final native void Rect_Height(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(System::Drawing::Rectangle^),flags=gcobject
 */
public static final native int Rectangle_X(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Drawing::Rectangle^),flags=gcobject
 */
public static final native int Rectangle_Y(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Drawing::Rectangle^),flags=gcobject
 */
public static final native int Rectangle_Width(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Drawing::Rectangle^),flags=gcobject
 */
public static final native int Rectangle_Height(int sender);
/** @method accessor=Registry::ClassesRoot,flags=const gcobject */
public static final native int Registry_ClassesRoot();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(RegistryKey^),flags=gcobject
 * @param key cast=(String^),flags=gcobject
 */
public static final native int RegistryKey_OpenSubKey(int sender, int key);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(RegistryKey^),flags=gcobject
 */
public static final native int RegistryKey_GetSubKeyNames(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(RegistryKey^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 */
public static final native int RegistryKey_GetValue(int sender, int name);
/** @method accessor=RepeatBehavior::Forever,flags=const gcobject */
public static final native int RepeatBehavior_Forever();
/**
 * @method flags=setter
 * @param sender cast=(RelativeSource^),flags=gcobject
 * @param type cast=(Type^),flags=gcobject
 */
public static final native void RelativeSource_AncestorType(int sender, int type);
/**
 * @method accessor=RenderOptions::GetBitmapScalingMode
 * @param target cast=(DependencyObject^),flags=gcobject
 */
public static final native int RenderOptions_GetBitmapScalingMode(int target);
/**
 * @method accessor=RenderOptions::SetBitmapScalingMode
 * @param target cast=(DependencyObject^),flags=gcobject
 * @param mode cast=(BitmapScalingMode)
 */
public static final native void RenderOptions_SetBitmapScalingMode(int target, int mode);
/**
 * @method accessor=RenderOptions::SetEdgeMode
 * @param target cast=(DependencyObject^),flags=gcobject
 * @param edgeMode cast=(EdgeMode)
 */
public static final native void RenderOptions_SetEdgeMode(int target, int edgeMode);
/**
 * @method flags=cpp
 * @param sender cast=(RenderTargetBitmap^),flags=gcobject
 * @param visual cast=(Visual^),flags=gcobject
 */
public static final native void RenderTargetBitmap_Render(int sender, int visual);
/**
 * @method flags=setter
 * @param sender cast=(RoutedEventArgs^),flags=gcobject
 */
public static final native void RoutedEventArgs_Handled(int sender, boolean handled);
/** @method accessor=RoutedEventArgs::typeid,flags=const gcobject */
public static final native int RoutedEventArgs_typeid();
/**
 * @method flags=gcobject getter
 * @param sender cast=(RoutedEventArgs^),flags=gcobject
 */
public static final native int RoutedEventArgs_OriginalSource(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(RoutedEventArgs^),flags=gcobject
 */
public static final native int RoutedEventArgs_Source(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(RoutedPropertyChangedEventArgs<Object^>^),flags=gcobject
 */
public static final native int RoutedPropertyChangedEventArgs_NewValue(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(RoutedPropertyChangedEventArgs<Object^>^),flags=gcobject
 */
public static final native int RoutedPropertyChangedEventArgs_OldValue(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Run^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void Run_Text(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(SaveFileDialog^),flags=gcobject
 */
public static final native void SaveFileDialog_OverwritePrompt(int sender, boolean value);
/** @method accessor=System::Windows::Forms::Screen::AllScreens,flags=const gcobject */
public static final native int Screen_AllScreens();
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::Screen^),flags=gcobject
 */
public static final native int Screen_Bounds(int sender);
/** @method accessor=System::Windows::Forms::Screen::PrimaryScreen,flags=const gcobject */
public static final native int Screen_PrimaryScreen();
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::Screen^),flags=gcobject
 */
public static final native int Screen_WorkingArea(int sender);
/**
 * @method flags=getter
 * @param sender cast=(ScrollBar^),flags=gcobject
 */
public static final native int ScrollBar_Orientation(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ScrollBar^),flags=gcobject
 * @param orientation cast=(Orientation)
 */
public static final native void ScrollBar_Orientation(int sender, int orientation);
/**
 * @method flags=adder
 * @param sender cast=(ScrollBar^),flags=gcobject
 * @param handler cast=(ScrollEventHandler^),flags=gcobject
 */
public static final native void ScrollBar_Scroll(int sender, int handler);
/**
 * @method flags=getter
 * @param sender cast=(ScrollBar^),flags=gcobject
 */
public static final native double ScrollBar_ViewportSize(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ScrollBar^),flags=gcobject
 */
public static final native void ScrollBar_ViewportSize(int sender, double value);
/** @method accessor=ScrollBar::typeid,flags=const gcobject */
public static final native int ScrollBar_typeid();
/**
 * @method flags=getter
 * @param sender cast=(ScrollEventArgs^),flags=gcobject
 */
public static final native int ScrollEventArgs_ScrollEventType(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(ScrollViewer^),flags=gcobject
 */
public static final native void ScrollViewer_ScrollToVerticalOffset(int sender, double offset);
/**
 * @method accessor=ScrollViewer::SetVerticalScrollBarVisibility
 * @param sender cast=(DependencyObject^),flags=gcobject
 * @param visibility cast=(ScrollBarVisibility)
 */
public static final native void ScrollViewer_SetVerticalScrollBarVisibility(int sender, int visibility);
/**
 * @method accessor=ScrollViewer::SetHorizontalScrollBarVisibility
 * @param sender cast=(DependencyObject^),flags=gcobject
 * @param visibility cast=(ScrollBarVisibility)
 */
public static final native void ScrollViewer_SetHorizontalScrollBarVisibility(int sender, int visibility);
/** @method accessor=ScrollViewer::typeid,flags=const gcobject */
public static final native int ScrollViewer_typeid();
/**
 * @method flags=getter
 * @param sender cast=(ScrollViewer^),flags=gcobject
 */
public static final native double ScrollViewer_VerticalOffset(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Selector^),flags=gcobject
 */
public static final native void Selector_IsSynchronizedWithCurrentItem(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(Selector^),flags=gcobject
 */
public static final native int Selector_SelectedIndex(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Selector^),flags=gcobject
 */
public static final native void Selector_SelectedIndex(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Selector^),flags=gcobject
 */
public static final native int Selector_SelectedItem(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Selector^),flags=gcobject
 */
public static final native int Selector_SelectedValue(int sender);
/**
 * @method flags=adder
 * @param sender cast=(Selector^),flags=gcobject
 * @param handler cast=(SelectionChangedEventHandler^),flags=gcobject
 */
public static final native void Selector_SelectionChanged(int sender, int handler);
/**
 * @method flags=gcobject getter
 * @param sender cast=(SelectionChangedEventArgs^),flags=gcobject
 */
public static final native int SelectionChangedEventArgs_AddedItems(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(SelectionChangedEventArgs^),flags=gcobject
 */
public static final native int SelectionChangedEventArgs_RemovedItems(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(SetterBaseCollection^),flags=gcobject
 * @param setter cast=(SetterBase^),flags=gcobject
 */
public static final native void SetterBaseCollection_Add(int sender, int setter);
/**
 * @method flags=setter
 * @param sender cast=(Shape^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native void Shape_Fill(int sender, int brush);
/**
 * @method flags=setter
 * @param sender cast=(Shape^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native void Shape_Stroke(int sender, int brush);
/**
 * @method flags=setter
 * @param sender cast=(Shape^),flags=gcobject
 */
public static final native void Shape_StrokeThickness(int sender, double strokethickness);
/**
 * @method flags=getter
 * @param sender cast=(Size ^),flags=gcobject
 */
public static final native double Size_Width(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Size ^),flags=gcobject
 */
public static final native double Size_Height(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Size ^),flags=gcobject
 */
public static final native void Size_Width(int sender, double width);
/**
 * @method flags=setter
 * @param sender cast=(Size ^),flags=gcobject
 */
public static final native void Size_Height(int sender, double height);
/**
 * @method flags=gcobject getter
 * @param sender cast=(SizeChangedEventArgs^),flags=gcobject
 */
public static final native int SizeChangedEventArgs_NewSize(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(SizeChangedEventArgs^),flags=gcobject
 */
public static final native int SizeChangedEventArgs_PreviousSize(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Slider ^),flags=gcobject
 * @param value cast=(Orientation)
 */
public static final native void Slider_Orientation(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Slider^),flags=gcobject
 */
public static final native void Slider_TickFrequency(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(Slider^),flags=gcobject
 * @param value cast=(TickPlacement)
 */
public static final native void Slider_TickPlacement(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(StackPanel^),flags=gcobject
 * @param orientation cast=(Orientation)
 */
public static final native void StackPanel_Orientation(int sender, int orientation);
/** @method accessor=StackPanel::OrientationProperty,flags=const gcobject */
public static final native int StackPanel_OrientationProperty();
/** @method accessor=StackPanel::typeid,flags=const gcobject */
public static final native int StackPanel_typeid();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(StreamGeometry^),flags=gcobject
 */
public static final native int StreamGeometry_Open(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(StreamGeometryContext^),flags=gcobject
 * @param startPoint cast=(Point),flags=gcobject
 */
public static final native void StreamGeometryContext_BeginFigure(int sender, int startPoint, boolean isFilled, boolean isClosed);
/**
 * @method flags=cpp
 * @param sender cast=(StreamGeometryContext^),flags=gcobject
 */
public static final native void StreamGeometryContext_Close(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(StreamGeometryContext^),flags=gcobject
 * @param startPoint cast=(Point),flags=gcobject
 */
public static final native void StreamGeometryContext_LineTo(int sender, int startPoint, boolean isStroked, boolean isSmoothJoin);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(String^),flags=gcobject
 */
public static final native int String_ToCharArray(int sender);
/** @method accessor=String::typeid,flags=const gcobject */
public static final native int String_typeid();
/**
 * @method flags=getter
 * @param sender cast=(String^),flags=gcobject
 */
public static final native int String_Length(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Style^),flags=gcobject
 */
public static final native int Style_Setters(int sender);
/**
 * @method flags=getter no_gen gcobject
 * @param sender cast=(SWTCanvas^),flags=gcobject
 */
public static final native int SWTCanvas_Visual(int sender);
/**
 * @method flags=no_gen setter
 * @param sender cast=(SWTCanvas^),flags=gcobject
 * @param visual cast=(DrawingVisual^),flags=gcobject
 */
public static final native void SWTCanvas_Visual(int sender, int visual);
/** @method flags=no_gen */
public static final native int SWTDockPanel_JNIRefProperty();
/** @method flags=no_gen */
public static final native int SWTDockPanel_typeid();
/**
 * @method flags=no_gen setter
 * @param sender cast=(SWTTextRunProperties^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native void SWTTextRunProperties_ForegroundBrush(int sender, int brush);
/** @method accessor=SystemColors::ControlBrush,flags=const gcobject */
public static final native int SystemColors_ControlBrush();
/** @method accessor=SystemColors::ControlColor,flags=const struct gcobject */
public static final native int SystemColors_ControlColor();
/** @method accessor=SystemColors::ControlTextBrush,flags=const gcobject */
public static final native int SystemColors_ControlTextBrush();
/** @method accessor=SystemColors::ControlTextColor,flags=const struct gcobject */
public static final native int SystemColors_ControlTextColor();
/** @method accessor=SystemColors::ControlDarkColor,flags=const struct gcobject */
public static final native int SystemColors_ControlDarkColor();
/** @method accessor=SystemColors::ControlLightColor,flags=const struct gcobject */
public static final native int SystemColors_ControlLightColor();
/** @method accessor=SystemColors::ControlLightLightColor,flags=const struct gcobject */
public static final native int SystemColors_ControlLightLightColor();
/** @method accessor=SystemColors::ControlDarkDarkColor,flags=const struct gcobject */
public static final native int SystemColors_ControlDarkDarkColor();
/** @method accessor=SystemColors::InfoColor,flags=const struct gcobject */
public static final native int SystemColors_InfoColor();
/** @method accessor=SystemColors::InfoTextColor,flags=const struct gcobject */
public static final native int SystemColors_InfoTextColor();
/** @method accessor=SystemColors::ActiveBorderColor,flags=const struct gcobject */
public static final native int SystemColors_ActiveBorderColor();
/** @method accessor=SystemColors::ActiveBorderBrush,flags=const gcobject */
public static final native int SystemColors_ActiveBorderBrush();
/** @method accessor=SystemColors::ActiveCaptionColor,flags=const struct gcobject */
public static final native int SystemColors_ActiveCaptionColor();
/** @method accessor=SystemColors::ActiveCaptionTextColor,flags=const struct gcobject */
public static final native int SystemColors_ActiveCaptionTextColor();
/** @method accessor=SystemColors::GradientActiveCaptionColor,flags=const struct gcobject */
public static final native int SystemColors_GradientActiveCaptionColor();
/** @method accessor=SystemColors::InactiveCaptionColor,flags=const struct gcobject */
public static final native int SystemColors_InactiveCaptionColor();
/** @method accessor=SystemColors::InactiveCaptionTextColor,flags=const struct gcobject */
public static final native int SystemColors_InactiveCaptionTextColor();
/** @method accessor=SystemColors::GradientInactiveCaptionColor,flags=const struct gcobject */
public static final native int SystemColors_GradientInactiveCaptionColor();
/** @method accessor=SystemColors::WindowColor,flags=const struct gcobject */
public static final native int SystemColors_WindowColor();
/** @method accessor=SystemColors::WindowTextColor,flags=const struct gcobject */
public static final native int SystemColors_WindowTextColor();
/** @method accessor=SystemColors::HighlightBrush,flags=const gcobject */
public static final native int SystemColors_HighlightBrush();
/** @method accessor=SystemColors::HighlightColor,flags=const struct gcobject */
public static final native int SystemColors_HighlightColor();
/** @method accessor=SystemColors::HighlightTextColor,flags=const struct gcobject */
public static final native int SystemColors_HighlightTextColor();
/** @method accessor=SystemFonts::MessageFontFamily,flags=const gcobject */
public static final native int SystemFonts_MessageFontFamily();
/** @method accessor=SystemFonts::MessageFontStyle,flags=const gcobject */
public static final native int SystemFonts_MessageFontStyle();
/** @method accessor=SystemParameters::MinimumHorizontalDragDistance,flags=const */
public static final native double SystemParameters_MinimumHorizontalDragDistance();
/** @method accessor=SystemParameters::MinimumVerticalDragDistance,flags=const */
public static final native double SystemParameters_MinimumVerticalDragDistance();
/** @method accessor=SystemParameters::PrimaryScreenHeight,flags=const */
public static final native double SystemParameters_PrimaryScreenHeight();
/** @method accessor=SystemParameters::PrimaryScreenWidth,flags=const */
public static final native double SystemParameters_PrimaryScreenWidth();
/** @method accessor=SystemParameters::VirtualScreenLeft,flags=const */
public static final native double SystemParameters_VirtualScreenLeft();
/** @method accessor=SystemParameters::VirtualScreenTop,flags=const */
public static final native double SystemParameters_VirtualScreenTop();
/** @method accessor=SystemParameters::VirtualScreenWidth,flags=const */
public static final native double SystemParameters_VirtualScreenWidth();
/** @method accessor=SystemParameters::VirtualScreenHeight,flags=const */
public static final native double SystemParameters_VirtualScreenHeight();
/** @method accessor=SystemParameters::VerticalScrollBarWidth,flags=const */
public static final native double SystemParameters_VerticalScrollBarWidth();
/** @method accessor=SystemParameters::VerticalScrollBarButtonHeight,flags=const */
public static final native double SystemParameters_VerticalScrollBarButtonHeight();
/** @method accessor=SystemParameters::HighContrast,flags=const */
public static final native boolean SystemParameters_HighContrast();
/** @method accessor=SystemParameters::HorizontalScrollBarHeight,flags=const */
public static final native double SystemParameters_HorizontalScrollBarHeight();
/** @method accessor=SystemParameters::HorizontalScrollBarButtonWidth,flags=const */
public static final native double SystemParameters_HorizontalScrollBarButtonWidth();
/** @method accessor=SystemParameters::WheelScrollLines,flags=const */
public static final native int SystemParameters_WheelScrollLines();
/** @method accessor=SystemParameters::WorkArea,flags=const gcobject */
public static final native int SystemParameters_WorkArea();
/** @method accessor=SystemParameters::ThinHorizontalBorderHeight,flags=const */
public static final native double SystemParameters_ThinHorizontalBorderHeight();
/** @method accessor=SystemParameters::ThinVerticalBorderWidth,flags=const */
public static final native double SystemParameters_ThinVerticalBorderWidth();
/** @method accessor=SystemFonts::MessageFontSize,flags=const */
public static final native double SystemFonts_MessageFontSize();
/** @method accessor=SystemFonts::MessageFontWeight,flags=const gcobject */
public static final native int SystemFonts_MessageFontWeight();
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native void TextBlock_Background(int sender, int brush);
/** @method accessor=TextBlock::BackgroundProperty,flags=const gcobject */
public static final native int TextBlock_BackgroundProperty();
/** @method accessor=TextBlock::FontFamilyProperty,flags=const gcobject */
public static final native int TextBlock_FontFamilyProperty();
/** @method accessor=TextBlock::FontStyleProperty,flags=const gcobject */
public static final native int TextBlock_FontStyleProperty();
/** @method accessor=TextBlock::FontWeightProperty,flags=const gcobject */
public static final native int TextBlock_FontWeightProperty();
/** @method accessor=TextBlock::FontStretchProperty,flags=const gcobject */
public static final native int TextBlock_FontStretchProperty();
/** @method accessor=TextBlock::FontSizeProperty,flags=const gcobject */
public static final native int TextBlock_FontSizeProperty();
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 * @param value cast=(FontFamily^),flags=gcobject
 */
public static final native void TextBlock_FontFamily(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 * @param value cast=(FontStyle),flags=gcobject
 */
public static final native void TextBlock_FontStyle(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 * @param value cast=(FontWeight),flags=gcobject
 */
public static final native void TextBlock_FontWeight(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 * @param value cast=(FontStretch),flags=gcobject
 */
public static final native void TextBlock_FontStretch(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 */
public static final native void TextBlock_FontSize(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native void TextBlock_Foreground(int sender, int brush);
/** @method accessor=TextBlock::ForegroundProperty,flags=const gcobject */
public static final native int TextBlock_ForegroundProperty();
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextBounds^),flags=gcobject
 */
public static final native int TextBounds_Rectangle(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(IEnumerable^),flags=gcobject
 */
public static final native int TextBoundsCollection_GetEnumerator(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(IEnumerator^),flags=gcobject
 */
public static final native int TextBoundsCollection_Current(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(System::Collections::Generic::IList<TextTabProperties^>^),flags=gcobject
 * @param tab cast=(TextTabProperties^),flags=gcobject
 */
public static final native void TextTabPropertiesCollection_Add(int sender, int tab);
/**
 * @method flags=setter
 * @param sender cast=(TabControl^),flags=gcobject
 * @param value cast=(Dock)
 */
public static final native void TabControl_TabStripPlacement(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(TabItem^),flags=gcobject
 */
public static final native boolean TabItem_IsSelected(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextBlock^),flags=gcobject
 */
public static final native int TextBlock_Inlines(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextBlock^),flags=gcobject
 */
public static final native int TextBlock_Text(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBlock^),flags=gcobject
 * @param str cast=(String^),flags=gcobject
 */
public static final native void TextBlock_Text(int sender, int str);
/** @method accessor=TextBlock::TextProperty,flags=const gcobject */
public static final native int TextBlock_TextProperty();
/** @method accessor=TextBlock::typeid,flags=const gcobject */
public static final native int TextBlock_typeid();
/**
 * @method flags=getter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_CaretIndex(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native void TextBox_CaretIndex(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_GetFirstVisibleLineIndex(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_GetLineIndexFromCharacterIndex(int sender, int value);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_GetRectFromCharacterIndex(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_LineCount(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_MaxLength(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native void TextBox_MaxLength(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native void TextBox_ScrollToLine(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native void TextBox_Select(int sender, int start, int length);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_SelectedText(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBox^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void TextBox_SelectedText(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_SelectionLength(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native void TextBox_SelectionLength(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_SelectionStart(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native void TextBox_SelectionStart(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextBox^),flags=gcobject
 */
public static final native int TextBox_Text(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBox^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void TextBox_Text(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(TextBox^),flags=gcobject
 * @param value cast=(TextWrapping)
 */
public static final native void TextBox_TextWrapping(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_AcceptsReturn(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_AcceptsTab(int sender, boolean value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBoxBase^),flags=gcobject
 * @param value cast=(String^),flags=gcobject
 */
public static final native void TextBoxBase_AppendText(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_Copy(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBoxBase^),flags=gcobject
 * @param value cast=(ScrollBarVisibility)
 */
public static final native void TextBoxBase_HorizontalScrollBarVisibility(int sender, int value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_Cut(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native boolean TextBoxBase_IsReadOnly(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_IsReadOnly(int sender, boolean value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_Paste(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_ScrollToEnd(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_ScrollToVerticalOffset(int sender, double value);
/**
 * @method flags=cpp
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native void TextBoxBase_SelectAll(int sender);
/**
 * @method flags=adder
 * @param sender cast=(TextBoxBase^),flags=gcobject
 * @param handler cast=(TextChangedEventHandler^),flags=gcobject
 */
public static final native void TextBoxBase_TextChanged(int sender, int handler);
/**
 * @method flags=getter
 * @param sender cast=(TextBoxBase^),flags=gcobject
 */
public static final native double TextBoxBase_VerticalOffset(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextBoxBase^),flags=gcobject
 * @param value cast=(ScrollBarVisibility)
 */
public static final native void TextBoxBase_VerticalScrollBarVisibility(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextCompositionEventArgs^),flags=gcobject
 */
public static final native int TextCompositionEventArgs_ControlText(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TextCompositionEventArgs^),flags=gcobject
 */
public static final native void TextCompositionEventArgs_Handled(int sender, boolean value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextCompositionEventArgs^),flags=gcobject
 */
public static final native int TextCompositionEventArgs_SystemText(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TextCompositionEventArgs^),flags=gcobject
 */
public static final native int TextCompositionEventArgs_Text(int sender);
/** @method accessor=TextDecorations::Underline,flags=const gcobject */
public static final native int TextDecorations_Underline();
/** @method accessor=TextDecorations::Strikethrough,flags=const gcobject */
public static final native int TextDecorations_Strikethrough();
/**
 * @method flags=cpp
 * @param sender cast=(TextDecorationCollection^),flags=gcobject
 * @param decoration cast=(TextDecoration^),flags=gcobject
 */
public static final native void TextDecorationCollection_Add(int sender, int decoration); 
/** @method accessor=TextFormatter::Create,flags=gcobject */
public static final native int TextFormatter_Create();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextFormatter^),flags=gcobject
 * @param textSource cast=(TextSource^),flags=gcobject
 * @param paragraphProperties cast=(TextParagraphProperties^),flags=gcobject
 * @param previousLineBreak cast=(TextLineBreak^),flags=gcobject
 */
public static final native int TextFormatter_FormatLine(int sender, int textSource, int firstCharIndex, double paragraphWidth, int paragraphProperties, int previousLineBreak);
/**
 * @method flags=getter
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native double TextLine_Baseline(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native double TextLine_Height(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native int TextLine_NewlineLength(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextLine^),flags=gcobject
 * @param characterHit cast=(CharacterHit),flags=gcobject
 */
public static final native int TextLine_GetNextCaretCharacterHit(int sender, int characterHit);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextLine^),flags=gcobject
 * @param characterHit cast=(CharacterHit),flags=gcobject
 */
public static final native int TextLine_GetPreviousCaretCharacterHit(int sender, int characterHit);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native int TextLine_GetTextLineBreak(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native int TextLine_GetTextBounds(int sender, int firstTextSourceCharacterIndex, int textLength);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native int TextLine_GetCharacterHitFromDistance(int sender, double distance);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native int TextLine_GetIndexedGlyphRuns(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(TextLine^),flags=gcobject
 * @param characterHit cast=(CharacterHit),flags=gcobject
 */
public static final native double TextLine_GetDistanceFromCharacterHit(int sender, int characterHit);
/**
 * @method flags=getter
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native int TextLine_Length(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native double TextLine_Start(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native double TextLine_Width(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TextLine^),flags=gcobject
 */
public static final native double TextLine_WidthIncludingTrailingWhitespace(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(TextLine^),flags=gcobject
 * @param drawContext cast=(DrawingContext^),flags=gcobject
 * @param origin cast=(Point),flags=gcobject
 * @param invertAxes cast=(InvertAxes)
 */
public static final native void TextLine_Draw(int sender, int drawContext, int origin, int invertAxes);
/**
 * @method flags=getter
 * @param sender cast=(Thickness^),flags=gcobject
 */
public static final native double Thickness_Left(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Thickness^),flags=gcobject
 */
public static final native double Thickness_Right(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Thickness^),flags=gcobject
 */
public static final native double Thickness_Top(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Thickness^),flags=gcobject
 */
public static final native double Thickness_Bottom(int sender);
/** @method accessor=Thumb::DragDeltaEvent,flags=const gcobject */
public static final native int Thumb_DragDeltaEvent();
/**
 * @method flags=setter
 * @param sender cast=(TileBrush^),flags=gcobject
 * @param mode cast=(TileMode)
 */
public static final native void TileBrush_TileMode(int sender, int mode);
/**
 * @method flags=setter
 * @param sender cast=(TileBrush^),flags=gcobject
 * @param stretch cast=(Stretch)
 */
public static final native void TileBrush_Stretch(int sender, int stretch);
/**
 * @method flags=setter
 * @param sender cast=(TileBrush^),flags=gcobject
 * @param viewport cast=(Rect),flags=gcobject
 */
public static final native void TileBrush_Viewport(int sender, int viewport);
/**
 * @method flags=setter
 * @param sender cast=(TileBrush^),flags=gcobject
 * @param mode cast=(BrushMappingMode)
 */
public static final native void TileBrush_ViewportUnits(int sender, int mode);
/**
 * @method flags=setter
 * @param sender cast=(TileBrush^),flags=gcobject
 * @param value cast=(AlignmentX)
 */
public static final native void TileBrush_AlignmentX(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(TileBrush^),flags=gcobject
 * @param value cast=(AlignmentY)
 */
public static final native void TileBrush_AlignmentY(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Timeline^),flags=gcobject
 */
public static final native void Timeline_AutoReverse(int sender, boolean autoReverse);
/**
 * @method flags=setter
 * @param sender cast=(Timeline^),flags=gcobject
 * @param duration cast=(Duration),flags=gcobject
 */
public static final native void Timeline_Duration(int sender, int duration);
/**
 * @method flags=setter
 * @param sender cast=(Timeline^),flags=gcobject
 * @param behavior cast=(RepeatBehavior),flags=gcobject
 */
public static final native void Timeline_RepeatBehavior(int sender, int behavior);
/** @method accessor=TimeSpan::FromMilliseconds(arg0),flags=const gcobject */
public static final native int TimeSpan_FromMilliseconds(double ms);
/**
 * @method flags=adder
 * @param sender cast=(ToggleButton^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void ToggleButton_Checked(int sender, int handler);
/** @method accessor=ToggleButton::CheckedEvent,flags=const gcobject */
public static final native int ToggleButton_CheckedEvent();
/** @method accessor=ToggleButton::IndeterminateEvent,flags=const gcobject */
public static final native int ToggleButton_IndeterminateEvent ();
/**
 * @method flags=getter
 * @param sender cast=(ToggleButton ^),flags=gcobject
 */
public static final native boolean ToggleButton_IsChecked(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ToggleButton ^),flags=gcobject
 */
public static final native void ToggleButton_IsChecked(int sender, boolean value);
/**
 * @method flags=no_gen setter
 * @param sender cast=(ToggleButton^),flags=gcobject
 */
public static final native void ToggleButton_IsCheckedNullSetter(int sender);
/** @method accessor=ToggleButton::IsCheckedProperty,flags=const gcobject */
public static final native int ToggleButton_IsCheckedProperty();
/** @method accessor=ToggleButton::IsThreeStateProperty,flags=const gcobject */
public static final native int ToggleButton_IsThreeStateProperty();
/**
 * @method flags=adder
 * @param sender cast=(ToggleButton^),flags=gcobject
 * @param handler cast=(RoutedEventHandler^),flags=gcobject
 */
public static final native void ToggleButton_Unchecked(int sender, int handler);
/** @method accessor=ToggleButton::UncheckedEvent,flags=const gcobject */
public static final native int ToggleButton_UncheckedEvent();
/**
 * @method flags=getter
 * @param sender cast=(ToolBar^),flags=gcobject
 */
public static final native int ToolBar_Band(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ToolBar^),flags=gcobject
 */
public static final native void ToolBar_Band(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(ToolBar^),flags=gcobject
 */
public static final native int ToolBar_BandIndex(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ToolBar^),flags=gcobject
 */
public static final native void ToolBar_BandIndex(int sender, int value);
/** @method accessor=ToolBar::BandProperty,flags=const gcobject */
public static final native int ToolBar_BandProperty();
/** @method accessor=ToolBar::ButtonStyleKey,flags=const gcobject */
public static final native int ToolBar_ButtonStyleKey();
/** @method accessor=ToolBar::CheckBoxStyleKey,flags=const gcobject */
public static final native int ToolBar_CheckBoxStyleKey();
/** @method accessor=ToolBar::RadioButtonStyleKey,flags=const gcobject */
public static final native int ToolBar_RadioButtonStyleKey();
/** @method accessor=ToolBar::SeparatorStyleKey,flags=const gcobject */
public static final native int ToolBar_SeparatorStyleKey();
/**
 * @method flags=getter
 * @param sender cast=(ToolBar^),flags=gcobject
 */
public static final native boolean ToolBar_HasOverflowItems(int sender);
/**
 * @method accessor=ToolBar::SetOverflowMode
 * @param element cast=(DependencyObject^),flags=gcobject
 * @param mode cast=(OverflowMode)
 */
public static final native void ToolBar_SetOverflowMode(int element, int mode);
/** @method accessor=ToolBar::typeid,flags=const gcobject */
public static final native int ToolBar_typeid();
/**
 * @method flags=setter
 * @param sender cast=(ToolBarTray^),flags=gcobject
 * @param value cast=(Brush^),flags=gcobject
 */
public static final native void ToolBarTray_Background(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(ToolBarTray^),flags=gcobject
 */
public static final native boolean ToolBarTray_IsLocked(int sender);
/**
 * @method flags=setter
 * @param sender cast=(ToolBarTray^),flags=gcobject
 */
public static final native void ToolBarTray_IsLocked(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(ToolBarTray^),flags=gcobject
 * @param value cast=(Orientation)
 */
public static final native void ToolBarTray_Orientation(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(ToolBarTray^),flags=gcobject
 */
public static final native int ToolBarTray_ToolBars(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(TransformCollection^),flags=gcobject
 * @param transform cast=(Transform^),flags=gcobject
 */
public static final native void TransformCollection_Add(int sender, int transform);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Transform^),flags=gcobject
 */
public static final native int Transform_Clone(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TransformGroup^),flags=gcobject
 */
public static final native int TransformGroup_Children(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TreeView^),flags=gcobject
 */
public static final native int TreeView_SelectedItem(int sender);
/**
 * @method flags=adder
 * @param sender cast=(TreeView^),flags=gcobject
 * @param handler cast=(RoutedPropertyChangedEventHandler<Object^>^),flags=gcobject
 */
public static final native void TreeView_SelectedItemChanged(int sender, int handler);
/** @method accessor=TreeView::typeid,flags=const gcobject */
public static final native int TreeView_typeid();
/** @method accessor=TreeViewItem::CollapsedEvent,flags=const gcobject */
public static final native int TreeViewItem_CollapsedEvent();
/** @method accessor=TreeViewItem::ExpandedEvent,flags=const gcobject */
public static final native int TreeViewItem_ExpandedEvent();
/**
 * @method flags=getter
 * @param sender cast=(TreeViewItem^),flags=gcobject
 */
public static final native boolean TreeViewItem_IsExpanded(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TreeViewItem^),flags=gcobject
 */
public static final native void TreeViewItem_IsExpanded(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(TreeViewItem^),flags=gcobject
 */
public static final native boolean TreeViewItem_IsSelected(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TreeViewItem^),flags=gcobject
 */
public static final native void TreeViewItem_IsSelected(int sender, boolean value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TreeViewItem^),flags=gcobject
 */
public static final native int TreeViewItem_HeaderTemplate(int sender);
/**
 * @method flags=setter
 * @param sender cast=(TreeViewItem^),flags=gcobject
 * @param value cast=(DataTemplate^),flags=gcobject
 */
public static final native void TreeViewItem_HeaderTemplate(int sender, int value);
/** @method accessor=TreeViewItem::HeaderTemplateProperty,flags=const gcobject */
public static final native int TreeViewItem_HeaderTemplateProperty();
/** @method accessor=TreeViewItem::typeid,flags=const gcobject */
public static final native int TreeViewItem_typeid();
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Type^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 * @param bindingFlags cast=(BindingFlags)
 */
public static final native int Type_GetProperty(int sender, int name, int bindingFlags);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TypeConverter^),flags=gcobject
 * @param string cast=(String^),flags=gcobject
 */
public static final native int TypeConverter_ConvertFromString(int sender, int string);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(TypeConverter^),flags=gcobject
 * @param object cast=(Object^),flags=gcobject
 */
public static final native int TypeConverter_ConvertToString(int sender, int object);
/**
 * @method accessor=TypeDescriptor::GetConverter,flags=gcobject
 * @param object cast=(Object^),flags=gcobject
 */
public static final native int TypeDescriptor_GetConverter(int object);
/**
 * @method flags=struct gcobject getter
 * @param sender cast=(Typeface^),flags=gcobject
 */
public static final native int Typeface_FontFamily(int sender);
/**
 * @method flags=struct gcobject getter
 * @param sender cast=(Typeface^),flags=gcobject
 */
public static final native int Typeface_Style(int sender);
/**
 * @method flags=struct gcobject getter
 * @param sender cast=(Typeface^),flags=gcobject
 */
public static final native int Typeface_Weight(int sender);
/**
 * @method flags=struct gcobject getter
 * @param sender cast=(Typeface^),flags=gcobject
 */
public static final native int Typeface_Stretch(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Collections::Generic::ICollection<Typeface^>^),flags=gcobject
 */
public static final native int TypefaceCollection_Count(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Collections::Generic::IEnumerator<Typeface^>^),flags=gcobject
 */
public static final native int TypefaceCollection_Current(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(System::Collections::Generic::IEnumerable<Typeface^>^),flags=gcobject
 */
public static final native int TypefaceCollection_GetEnumerator(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Type^),flags=gcobject
 * @param object cast=(Object^),flags=gcobject
 */
public static final native boolean Type_IsInstanceOfType(int sender, int object);
/**
 * @method flags=struct gcobject getter
 * @param sender cast=(Type^),flags=gcobject
 */
public static final native int Type_FullName(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(UIElementCollection^),flags=gcobject
 */
public static final native int UIElementCollection_default(int sender, int index);
/**
 * @method flags=cpp
 * @param sender cast=(UIElementCollection^),flags=gcobject
 * @param child cast=(UIElement^),flags=gcobject
 */
public static final native void UIElementCollection_Add(int sender, int child);
/**
 * @method flags=cpp
 * @param sender cast=(UIElementCollection^),flags=gcobject
 * @param child cast=(UIElement^),flags=gcobject
 */
public static final native void UIElementCollection_Insert(int sender, int index, int child);
/**
 * @method flags=cpp
 * @param sender cast=(UIElementCollection^),flags=gcobject
 * @param child cast=(UIElement^),flags=gcobject
 */
public static final native int UIElementCollection_IndexOf(int sender, int child);
/**
 * @method flags=cpp
 * @param sender cast=(UIElementCollection^),flags=gcobject
 * @param child cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElementCollection_Contains(int sender, int child);
/**
 * @method flags=cpp
 * @param sender cast=(UIElementCollection^),flags=gcobject
 */
public static final native void UIElementCollection_Clear(int sender);
/**
 * @method flags=getter
 * @param sender cast=(UIElementCollection^),flags=gcobject
 */
public static final native int UIElementCollection_Count(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(IEnumerator^),flags=gcobject
 */
public static final native int UIElementCollection_Current(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(IEnumerable^),flags=gcobject
 */
public static final native int UIElementCollection_GetEnumerator(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(UIElementCollection^),flags=gcobject
 * @param child cast=(UIElement^),flags=gcobject
 */
public static final native void UIElementCollection_Remove(int sender, int child);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 * @param event cast=(RoutedEvent^),flags=gcobject
 * @param handler cast=(Delegate^),flags=gcobject
 */
public static final native void UIElement_AddHandler(int sender, int event, int handler, boolean handledEventsToo);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_AllowDrop(int sender, boolean value);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_CaptureMouse(int sender);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 * @param geometry cast=(Geometry^),flags=gcobject
 */
public static final native void UIElement_Clip(int sender, int geometry);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_ClipToBounds(int sender, boolean value);
/** @method accessor=UIElement::ClipToBoundsProperty,flags=const gcobject */
public static final native int UIElement_ClipToBoundsProperty();
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(DragEventHandler^),flags=gcobject
 */
public static final native void UIElement_DragEnter(int sender, int handler);
/** @method accessor=UIElement::DragEnterEvent,flags=const gcobject */
public static final native int UIElement_DragEnterEvent();
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(DragEventHandler^),flags=gcobject
 */
public static final native void UIElement_DragLeave(int sender, int handler);
/** @method accessor=UIElement::DragLeaveEvent,flags=const gcobject */
public static final native int UIElement_DragLeaveEvent();
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(DragEventHandler^),flags=gcobject
 */
public static final native void UIElement_DragOver(int sender, int handler);
/** @method accessor=UIElement::DragOverEvent,flags=const gcobject */
public static final native int UIElement_DragOverEvent();
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(DragEventHandler^),flags=gcobject
 */
public static final native void UIElement_Drop(int sender, int handler);
/** @method accessor=UIElement::DropEvent,flags=const gcobject */
public static final native int UIElement_DropEvent();
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_Focus(int sender);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_Focusable (int sender, boolean value);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param animation cast=(AnimationTimeline^),flags=gcobject
 */
public static final native void UIElement_BeginAnimation(int sender, int dp, int animation);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(UIElement^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native int UIElement_InputHitTest(int sender, int point);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_InvalidateVisual(int sender);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_IsEnabled(int sender);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_IsEnabled(int sender, boolean enable);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_IsFocused(int sender);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_IsHitTestVisible(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_IsKeyboardFocused(int sender); 
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_IsKeyboardFocusWithin(int sender);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_IsMeasureValid(int sender);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_IsMouseOver(int sender);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native boolean UIElement_IsVisible(int sender);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(KeyEventHandler^),flags=gcobject
 */
public static final native void UIElement_KeyUp(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(KeyEventHandler^),flags=gcobject
 */
public static final native void UIElement_KeyDown(int sender, int handler);
/**
 * @method flags=struct gcobject getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native int UIElement_DesiredSize(int sender);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(GiveFeedbackEventHandler^),flags=gcobject
 */
public static final native void UIElement_GiveFeedback(int sender, int handler);
/** @method accessor=UIElement::GiveFeedbackEvent,flags=const gcobject */
public static final native int UIElement_GiveFeedbackEvent();
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void UIElement_LayoutUpdated(int sender, int handler);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement ^),flags=gcobject
 * @param availableSize cast=(Size),flags=gcobject
 */
public static final native void UIElement_Measure(int sender, int availableSize);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(MouseButtonEventHandler^),flags=gcobject
 */
public static final native void UIElement_MouseDown(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(MouseEventHandler^),flags=gcobject
 */
public static final native void UIElement_MouseEnter(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(MouseEventHandler^),flags=gcobject
 */
public static final native void UIElement_MouseLeave(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(MouseEventHandler^),flags=gcobject
 */
public static final native void UIElement_MouseMove(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(MouseWheelEventHandler^),flags=gcobject
 */
public static final native void UIElement_MouseWheel(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(MouseButtonEventHandler^),flags=gcobject
 */
public static final native void UIElement_MouseUp(int sender, int handler);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 * @param request cast=(TraversalRequest^),flags=gcobject
 */
public static final native void UIElement_MoveFocus(int sender, int request);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native double UIElement_Opacity(int sender);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_Opacity(int sender, double value);
/** @method accessor=UIElement::OpacityProperty,flags=const gcobject */
public static final native int UIElement_OpacityProperty();
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(KeyEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewKeyDown(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(KeyEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewKeyUp(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement ^),flags=gcobject
 * @param handler cast=(MouseButtonEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewMouseDown(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement ^),flags=gcobject
 * @param handler cast=(MouseEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewMouseMove(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement ^),flags=gcobject
 * @param handler cast=(MouseWheelEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewMouseWheel(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement ^),flags=gcobject
 * @param handler cast=(MouseButtonEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewMouseUp(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(KeyboardFocusChangedEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewGotKeyboardFocus(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(KeyboardFocusChangedEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewLostKeyboardFocus(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(KeyboardFocusChangedEventHandler^),flags=gcobject
 */
public static final native void UIElement_LostKeyboardFocus(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(TextCompositionEventHandler^),flags=gcobject
 */
public static final native void UIElement_PreviewTextInput(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(QueryContinueDragEventHandler^),flags=gcobject
 */
public static final native void UIElement_QueryContinueDrag(int sender, int handler);
/** @method accessor=UIElement::QueryContinueDragEvent,flags=const gcobject */
public static final native int UIElement_QueryContinueDragEvent();
/**
 * @method flags=gcobject getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native int UIElement_RenderSize(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_ReleaseMouseCapture(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 * @param routedEvent cast=(RoutedEvent^),flags=gcobject
 * @param handler cast=(Delegate^),flags=gcobject
 */
public static final native void UIElement_RemoveHandler(int sender, int routedEvent, int handler);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_SnapsToDevicePixels(int sender, boolean value);
/**
 * @method flags=adder
 * @param sender cast=(UIElement^),flags=gcobject
 * @param handler cast=(TextCompositionEventHandler^),flags=gcobject
 */
public static final native void UIElement_TextInput(int sender, int handler);
/**
 * @method flags=struct cpp gcobject
 * @param sender cast=(UIElement^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 * @param relativeTo cast=(UIElement^),flags=gcobject
 */
public static final native int UIElement_TranslatePoint(int sender, int point, int relativeTo);
/**
 * @method flags=cpp
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native void UIElement_UpdateLayout(int sender);
/**
 * @method flags=getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native byte UIElement_Visibility(int sender);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 * @param visible cast=(Visibility)
 */
public static final native void UIElement_Visibility(int sender, byte visible);
/** @method accessor=UIElement::VisibilityProperty,flags=const gcobject */
public static final native int UIElement_VisibilityProperty();
/**
 * @method flags=getter
 * @param sender cast=(VirtualizingStackPanel^),flags=gcobject
 */
public static final native double VirtualizingStackPanel_VerticalOffset(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Visual^),flags=gcobject
 * @param descendant cast=(DependencyObject^),flags=gcobject
 */
public static final native boolean Visual_IsAncestorOf(int sender, int descendant);
/**
 * @method flags=cpp
 * @param sender cast=(Visual^),flags=gcobject
 * @param ancestor cast=(DependencyObject^),flags=gcobject
 */
public static final native boolean Visual_IsDescendantOf(int sender, int ancestor);
/**
 * @method flags=struct cpp gcobject
 * @param sender cast=(Visual^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native int Visual_PointToScreen(int sender, int point);
/**
 * @method flags=struct cpp gcobject
 * @param sender cast=(Visual^),flags=gcobject
 * @param point cast=(Point),flags=gcobject
 */
public static final native int Visual_PointFromScreen(int sender, int point);
/**
 * @method accessor=VisualTreeHelper::GetChild,flags=gcobject
 * @param sender cast=(DependencyObject^),flags=gcobject
 */
public static final native int VisualTreeHelper_GetChild(int sender, int value);
/**
 * @method accessor=VisualTreeHelper::GetChildrenCount
 * @param sender cast=(DependencyObject^),flags=gcobject
 */
public static final native int VisualTreeHelper_GetChildrenCount(int sender);
/**
 * @method accessor=VisualTreeHelper::GetParent,flags=gcobject
 * @param sender cast=(DependencyObject^),flags=gcobject
 */
public static final native int VisualTreeHelper_GetParent(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native boolean WebBrowser_CanGoBack(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native boolean WebBrowser_CanGoForward(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native int WebBrowser_Document(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native int WebBrowser_DocumentText(int sender);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param string cast=(String^),flags=gcobject
 */
public static final native void WebBrowser_DocumentText(int sender, int string);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native int WebBrowser_DocumentTitle(int sender);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param handler cast=(System::Windows::Forms::WebBrowserDocumentCompletedEventHandler^),flags=gcobject
 */
public static final native void WebBrowser_DocumentCompleted(int sender, int handler);
/**
 * @method flags=cpp
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native boolean WebBrowser_GoBack(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native boolean WebBrowser_GoForward(int sender);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param handler cast=(System::Windows::Forms::WebBrowserNavigatingEventHandler^),flags=gcobject
 */
public static final native void WebBrowser_Navigating(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param handler cast=(System::Windows::Forms::WebBrowserNavigatedEventHandler^),flags=gcobject
 */
public static final native void WebBrowser_Navigated(int sender, int handler);
/**
 * @method flags=cpp
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param urlString cast=(String^),flags=gcobject
 */
public static final native void WebBrowser_Navigate(int sender, int urlString);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param handler cast=(System::Windows::Forms::WebBrowserProgressChangedEventHandler^),flags=gcobject
 */
public static final native void WebBrowser_ProgressChanged(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void WebBrowser_DocumentTitleChanged(int sender, int handler);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native int WebBrowser_StatusText(int sender);
/**
 * @method flags=adder
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void WebBrowser_StatusTextChanged(int sender, int handler);
/**
 * @method flags=getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native int WebBrowser_ReadyState(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native void WebBrowser_Refresh(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native void WebBrowser_Stop(int sender);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native void WebBrowser_ScriptErrorsSuppressed(int sender, boolean value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowser^),flags=gcobject
 */
public static final native int WebBrowser_Url(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowserNavigatingEventArgs^),flags=gcobject
 */
public static final native int WebBrowserNavigatingEventArgs_Url(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowserNavigatedEventArgs^),flags=gcobject
 */
public static final native int WebBrowserNavigatedEventArgs_Url(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(System::Windows::Forms::WebBrowserDocumentCompletedEventArgs^),flags=gcobject
 */
public static final native int WebBrowserDocumentCompletedEventArgs_Url(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Windows::Forms::WebBrowserProgressChangedEventArgs^),flags=gcobject
 */
public static final native long WebBrowserProgressChangedEventArgs_CurrentProgress(int sender);
/**
 * @method flags=getter
 * @param sender cast=(System::Windows::Forms::WebBrowserProgressChangedEventArgs^),flags=gcobject
 */
public static final native long WebBrowserProgressChangedEventArgs_MaximumProgress(int sender);
/**
 * @method flags=getter
 * @param sender cast=(WindowCollection^),flags=gcobject
 */
public static final native int WindowCollection_Count(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(IEnumerator^),flags=gcobject
 */
public static final native int WindowCollection_Current(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(IEnumerable^),flags=gcobject
 */
public static final native int WindowCollection_GetEnumerator(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native void Window_Activate(int sender);
/**
 * @method flags=cpp
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native void Window_Close(int sender);
/**
 * @method flags=adder
 * @param sender cast=(Window^),flags=gcobject
 * @param handler cast=(CancelEventHandler^),flags=gcobject
 */
public static final native void Window_Closing(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(Window^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void Window_Activated(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(Window^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void Window_Deactivated(int sender, int handler);
/**
 * @method flags=adder
 * @param sender cast=(Window^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void Window_LocationChanged(int sender, int handler);
/**
 * @method accessor=Window::GetWindow,flags=gcobject
 * @param dependencyObject cast=(DependencyObject^),flags=gcobject
 */
public static final native int Window_GetWindow(int dependencyObject);
/**
 * @method flags=cpp
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native void Window_Hide(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 * @param owner cast=(Window^),flags=gcobject
 */
public static final native void Window_Owner(int sender, int owner);
/**
 * @method flags=cpp
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native void Window_Show(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native double Window_Left(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Window ^),flags=gcobject
 */
public static final native double Window_Top(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native void Window_Left(int sender, double left);
/**
 * @method flags=setter
 * @param sender cast=(Window ^),flags=gcobject
 */
public static final native void Window_Top(int sender, double top);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 * @param icon cast=(ImageSource^),flags=gcobject
 */
public static final native void Window_Icon(int sender, int icon);
/**
 * @method flags=getter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native boolean Window_IsActive(int sender);
/**
 * @method flags=getter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native int Window_WindowState (int sender);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 * @param windowState cast=(WindowState)
 */
public static final native void Window_WindowState (int sender, int windowState);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native void Window_AllowsTransparency(int sender, boolean value);
/**
 * @method flags=getter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native int Window_WindowStyle(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 * @param value cast=(WindowStyle)
 */
public static final native void Window_WindowStyle(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native void Window_ShowInTaskbar(int sender, boolean value);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 * @param value cast=(ResizeMode)
 */
public static final native void Window_ResizeMode(int sender, int value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Window^),flags=gcobject
 */
public static final native int Window_Title(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Window^),flags=gcobject
 * @param string cast=(String^),flags=gcobject
 */
public static final native void Window_Title(int sender, int string);
/**
 * @method flags=setter
 * @param sender cast=(System::Windows::Forms::Integration::WindowsFormsHost^),flags=gcobject
 * @param child cast=(System::Windows::Forms::Control^),flags=gcobject
 */
public static final native void WindowsFormsHost_Child(int sender, int child);
/**
 * @method flags=cpp
 * @param sender cast=(WriteableBitmap^),flags=gcobject
 * @param sourceRect cast=(Int32Rect),flags=gcobject
 * @param buffer cast=(IntPtr)
 */
public static final native void WriteableBitmap_WritePixels(int sender, int sourceRect, byte[] buffer, int bufferSize, int stride);

/** @method flags=gcnew */
public static final native int gcnew_AccessText();
/** @method flags=gcnew */
public static final native int gcnew_Application();
/** @method flags=gcnew */
public static final native int gcnew_ArrayList(int count);
/**
 * @method flags=gcnew
 * @param point cast=(Point),flags=gcobject
 * @param size cast=(Size),flags=gcobject
 * @param sweepDirection cast=(SweepDirection)
 */
public static final native int gcnew_ArcSegment(int point, int size,  double rotationAngle, boolean isLargeArc, int sweepDirection, boolean isStroked);
/** @method flags=gcnew */
public static final native int gcnew_BitmapImage();
/**
 * @method flags=gcnew
 * @param point1 cast=(Point),flags=gcobject
 * @param point2 cast=(Point),flags=gcobject
 * @param point3 cast=(Point),flags=gcobject
 */
public static final native int gcnew_BezierSegment(int point1, int point2, int point3, boolean isScrolled);
/**
 * @method flags=gcnew
 * @param propertyPath cast=(String^),flags=gcobject
 */
public static final native int gcnew_Binding(int propertyPath);
/**
 * @method flags=gcnew
 * @param colors cast=(System::Collections::Generic::IList<Color>^),flags=gcobject
 */
public static final native int gcnew_BitmapPalette(int colors);
/**
 * @method accessor=System::Drawing::Bitmap,flags=gcnew
 * @param format cast=(System::Drawing::Imaging::PixelFormat)
 * @param scan0 cast=(IntPtr)
 */
public static final native int gcnew_Bitmap(int width, int height, int stride, int format, byte[] scan0);
/** @method flags=gcnew */
public static final native int gcnew_Button();
/** @method flags=gcnew */
public static final native int gcnew_Canvas();
/** @method flags=gcnew */
public static final native int gcnew_CheckBox();
/** @method accessor=System::Windows::Forms::ColorDialog,flags=gcnew */
public static final native int gcnew_ColorDialog();
/** @method accessor=System::Collections::Generic::List<Color>,flags=gcnew */
public static final native int gcnew_ColorList(int count);
/** @method flags=gcnew */
public static final native int gcnew_ComboBox();
/** @method flags=gcnew */
public static final native int gcnew_ComboBoxItem();
/** @method flags=gcnew */
public static final native int gcnew_ControlTemplate();
/**
 * @method flags=gcnew
 * @param source cast=(BitmapSource^),flags=gcobject
 * @param sourceRect cast=(Int32Rect),flags=gcobject
 */
public static final native int gcnew_CroppedBitmap(int source, int sourceRect);
/** @method flags=gcnew */
public static final native int gcnew_CharacterHit(int firstCharacterIndex, int trailingLength);
/**
 * @method flags=gcnew
 * @param geometryCombineMode cast=(GeometryCombineMode)
 * @param geometry1 cast=(Geometry^),flags=gcobject
 * @param geometry2 cast=(Geometry^),flags=gcobject
 */
public static final native int gcnew_CombinedGeometry(int geometryCombineMode, int geometry1, int geometry2); 
/** @method flags=gcnew */
public static final native int gcnew_CompositeCollection();
/** @method flags=gcnew */
public static final native int gcnew_ContextMenu();
/** @method flags=gcnew */
public static final native int gcnew_ContentControl(); 
/** @method flags=gcnew */
public static final native int gcnew_ColumnDefinition();
/** @method flags=gcnew */
public static final native int gcnew_DrawingVisual();
/** @method flags=gcnew */
public static final native int gcnew_DoubleAnimationUsingKeyFrames();
/**
 * @method flags=gcnew
 * @param dashes cast=(DoubleCollection^),flags=gcobject
 */
public static final native int gcnew_DashStyle(int dashes, double offset);
/** @method flags=gcnew */
public static final native int gcnew_DataObject();
/** @method flags=gcnew */
public static final native int gcnew_DataTemplate();
/** @method flags=gcnew */
public static final native int gcnew_DispatcherFrame();
/** @method flags=gcnew */
public static final native int gcnew_DispatcherTimer();
/**
 * @method flags=gcnew
 * @param keytime cast=(KeyTime),flags=gcobject
 */
public static final native int gcnew_DiscreteDoubleKeyFrame(double value, int keytime);
/** @method flags=gcnew */
public static final native int gcnew_DoubleCollection(int capacity);
/**
 * @method flags=gcnew
 * @param timespan cast=(TimeSpan),flags=gcobject
 */
public static final native int gcnew_Duration(int timespan);
/** @method flags=gcnew */
public static final native int gcnew_Expander();
/**
 * @method flags=gcnew
 * @param rect cast=(Rect),flags=gcobject
 */
public static final native int gcnew_EllipseGeometry(int rect);
/**
 * @method accessor=System::IO::FileInfo,flags=gcnew
 * @param path cast=(String^),flags=gcobject
 */
public static final native int gcnew_FileInfo(int path);
/** @method accessor=System::Windows::Forms::FolderBrowserDialog,flags=gcnew */
public static final native int gcnew_FolderBrowserDialog();
/**
 * @method accessor=System::Drawing::Font,flags=gcnew
 * @param fontFamily cast=(String^),flags=gcobject
 * @param fontStyle cast=(System::Drawing::FontStyle)
 */
public static final native int gcnew_Font(int fontFamily, float size, int fontStyle);
/** @method accessor=System::Windows::Forms::FontDialog,flags=gcnew */
public static final native int gcnew_FontDialog();
/**
 * @method flags=gcnew
 * @param str cast=(String^),flags=gcobject
 */
public static final native int gcnew_FontFamily(int str);
/**
 * @method flags=gcnew
 * @param source cast=(BitmapSource^),flags=gcobject
 * @param destinationFormat cast=(PixelFormat),flags=gcobject
 * @param destinationPalette cast=(BitmapPalette^),flags=gcobject
 */
public static final native int gcnew_FormatConvertedBitmap(int source, int destinationFormat, int destinationPalette, double alphaThreshold);
/**
 * @method flags=gcnew
 * @param string cast=(String^),flags=gcobject
 * @param culture cast=(CultureInfo^),flags=gcobject
 * @param flowDirection cast=(FlowDirection)
 * @param typeface cast=(Typeface^),flags=gcobject
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native int gcnew_FormattedText(int string, int culture, int flowDirection, int typeface, double emSize, int brush);
/** @method flags=gcnew */
public static final native int gcnew_Frame();
/**
 * @method flags=gcnew
 * @param type cast=(Type^),flags=gcobject
 */
public static final native int gcnew_FrameworkElementFactory(int type);
/**
 * @method flags=gcnew
 * @param type cast=(Type^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 */
public static final native int gcnew_FrameworkElementFactory(int type, int name);
/** @method flags=gcnew */
public static final native int gcnew_GeometryGroup();
/** @method flags=gcnew */
public static final native int gcnew_Grid();
/**
 * @method flags=gcnew
 * @param type cast=(GridUnitType)
 */
public static final native int gcnew_GridLength(double value, int type);
/** @method flags=gcnew */
public static final native int gcnew_GridView();
/** @method flags=gcnew */
public static final native int gcnew_GridViewColumn();
/** @method flags=gcnew */
public static final native int gcnew_GridViewColumnCollection();
/** @method flags=gcnew */
public static final native int gcnew_GridViewColumnHeader();
/** @method flags=gcnew */
public static final native int gcnew_GroupBox();
/**
 * @method flags=gcnew
 * @param inline cast=(Inline^),flags=gcobject
 */
public static final native int gcnew_Hyperlink(int inline);
//public static final native int gcnew_Icon(int stream);
/**
 * @method flags=gcnew
 * @param imageSource cast=(ImageSource^),flags=gcobject
 */
public static final native int gcnew_ImageBrush(int imageSource);
/** @method flags=gcnew */
public static final native int gcnew_Image();
/** @method flags=gcnew */
public static final native int gcnew_Int32(int value);
/** @method flags=gcnew */
public static final native int gcnew_Int32Rect(int x, int y, int width, int height);
/** @method flags=gcnew */
public static final native int gcnew_IntPtr(int value);
/** @method flags=gcnew */
public static final native int gcnew_Label();
/**
 * @method flags=gcnew
 * @param startColor cast=(Color),flags=gcobject
 * @param endColor cast=(Color),flags=gcobject
 */
public static final native int gcnew_LinearGradientBrush(int startColor, int endColor, double angle);
/**
 * @method flags=gcnew
 * @param startColor cast=(Color),flags=gcobject
 * @param endColor cast=(Color),flags=gcobject
 * @param startPoint cast=(Point),flags=gcobject
 * @param endPonit cast=(Point),flags=gcobject
 */
public static final native int gcnew_LinearGradientBrush(int startColor, int endColor, int startPoint, int endPonit);
/**
 * @method flags=gcnew
 * @param point cast=(Point),flags=gcobject
 */
public static final native int gcnew_LineSegment(int point, boolean isStroked);
/** @method flags=gcnew */
public static final native int gcnew_ListBox();
/** @method flags=gcnew */
public static final native int gcnew_ListBoxItem();
/** @method flags=gcnew */
public static final native int gcnew_ListView();
/** @method flags=gcnew */
public static final native int gcnew_ListViewItem();
/** @method flags=gcnew */
public static final native int gcnew_Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY);
/**
 * @method flags=gcnew
 * @param matrix cast=(Matrix),flags=gcobject
 */
public static final native int gcnew_MatrixTransform(int matrix);
/** @method accessor=System::IO::MemoryStream,flags=gcnew */
public static final native int gcnew_MemoryStream();
/** @method flags=gcnew */
public static final native int gcnew_Menu();
/** @method flags=gcnew */
public static final native int gcnew_MenuItem();
/** @method accessor=System::Windows::Forms::NotifyIcon,flags=gcnew */
public static final native int gcnew_NotifyIcon();
/** @method flags=gcnew */
public static final native int gcnew_OpenFileDialog();
/** @method flags=gcnew */
public static final native int gcnew_PasswordBox();
/** @method flags=gcnew */
public static final native int gcnew_Path();
/** @method flags=gcnew */
public static final native int gcnew_PathFigure();
/** @method flags=gcnew */
public static final native int gcnew_PathGeometry();
/** @method flags=gcnew */
public static final native int gcnew_Pen();
/**
 * @method flags=gcnew
 * @param brush cast=(Brush^),flags=gcobject
 */
public static final native int gcnew_Pen(int brush, double thickness);
/**
 * @method flags=gcnew
 * @param points cast=(PointCollection^),flags=gcobject
 */
public static final native int gcnew_PolyLineSegment(int points, boolean isStroked);
/** @method flags=gcnew */
public static final native int gcnew_PointCollection(int capacity);
/** @method flags=gcnew */
public static final native int gcnew_Point(double x, double y);
/** @method flags=gcnew */
public static final native int gcnew_Popup();
/** @method flags=gcnew */
public static final native int gcnew_ProgressBar();
/**
 * @method flags=gcnew
 * @param point1 cast=(Point),flags=gcobject
 * @param point2 cast=(Point),flags=gcobject
 */
public static final native int gcnew_QuadraticBezierSegment(int point1, int point2, boolean isScrolled);
/** @method flags=gcnew */
public static final native int gcnew_RadioButton();
/** @method flags=gcnew */
public static final native int gcnew_Rect(double x, double y, double width, double height);
/**
 * @method flags=gcnew
 * @param rect cast=(Rect),flags=gcobject
 */
public static final native int gcnew_RectangleGeometry(int rect);
/**
 * @method flags=gcnew
 * @param relativeSourceMode cast=(RelativeSourceMode)
 */
public static final native int gcnew_RelativeSource(int relativeSourceMode);
/**
 * @method flags=gcnew
 * @param pixelFormat cast=(PixelFormat),flags=gcobject
 */
public static final native int gcnew_RenderTargetBitmap(int pixelWidth, int pixelHeight, double dpiX, double dpiY, int pixelFormat);
/** @method flags=gcnew */
public static final native int gcnew_RepeatBehavior(int repeatCount);
/** @method flags=gcnew */
public static final native int gcnew_RepeatButton();
/** @method accessor=System::Windows::Shapes::Rectangle,flags=gcnew */
public static final native int gcnew_Rectangle();
/** @method flags=gcnew */
public static final native int gcnew_RowDefinition();
/** @method flags=gcnew */
public static final native int gcnew_Run();
/** @method flags=gcnew */
public static final native int gcnew_SaveFileDialog();
/** @method flags=gcnew */
public static final native int gcnew_ScrollBar();
/** @method flags=gcnew */
public static final native int gcnew_ScrollViewer();
/** @method flags=gcnew */
public static final native int gcnew_Separator();
/**
 * @method flags=gcnew
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Object^),flags=gcobject
 */
public static final native int gcnew_Setter(int dp, int value);
/**
 * @method accessor=System::Windows::Setter,flags=gcnew
 * @param dp cast=(DependencyProperty^),flags=gcobject
 * @param value cast=(Visibility)
 */
public static final native int gcnew_SetterVisibility(int dp, int value);
/** @method flags=gcnew */
public static final native int gcnew_Size();
/** @method flags=gcnew */
public static final native int gcnew_Size(double width, double height);
/** @method flags=gcnew */
public static final native int gcnew_Slider();
/** @method flags=gcnew */
public static final native int gcnew_ScaleTransform(double scaleX, double scaleY);
/**
 * @method flags=gcnew
 * @param color cast=(Color),flags=gcobject
 */
public static final native int gcnew_SolidColorBrush(int color);
/** @method flags=gcnew */
public static final native int gcnew_StackPanel();
/** @method flags=gcnew */
public static final native int gcnew_StreamGeometry();
/**
 * @method flags=gcnew
 * @param value cast=(const wchar_t *)
 */
public static final native int gcnew_String(char[] value);
/**
 * @method flags=gcnew
 * @param value cast=(const wchar_t *)
 */
public static final native int gcnew_String(char[] value, int startIndex, int length);
/** @method flags=gcnew */
public static final native int gcnew_Style();
/** @method flags=no_gen */
public static final native int gcnew_SWTCanvas(int jniRef);
/**
 * @method flags=no_gen gcnew
 * @param handle cast=(IntPtr)
 */
public static final native int gcnew_SWTSafeHandle(int handle, boolean isIcon);
//public static final native int gcnew_SWTDockPanel(int jniRef);
/** @method flags=no_gen gcnew */
public static final native int gcnew_SWTTextSource(int jniRef);
/**
 * @method flags=no_gen gcnew
 * @param properties cast=(TextRunProperties^),flags=gcobject
 */
public static final native int gcnew_SWTTextEmbeddedObject(int properties, int lenght, double width, double height, double baseline);
/**
 * @method flags=no_gen gcnew
 * @param typeface cast=(Typeface^),flags=gcobject
 * @param textDecorations cast=(TextDecorationCollection^),flags=gcobject
 * @param foregroundBrush cast=(Brush^),flags=gcobject
 * @param backgroundBrush cast=(Brush^),flags=gcobject
 * @param baselineAlignment cast=(BaselineAlignment)
 * @param culture cast=(CultureInfo^),flags=gcobject
 */
public static final native int gcnew_SWTTextRunProperties(int typeface, double size, double hittingSize, int textDecorations, int foregroundBrush, int backgroundBrush, int baselineAlignment, int culture);
/** @method flags=no_gen */
public static final native int gcnew_SWTTextParagraphProperties(int flowDirection, int textAlignment, boolean firstLineInParagraph, int defaultTextRunProperties, int textWrap, double lineHeight, double indent, int tabs);
/** @method flags=no_gen gcnew */
public static final native int gcnew_SWTTreeView(int jniRef);
/**
 * @method flags=no_gen gcnew
 * @param treeView cast=(TreeView^),flags=gcobject
 */
public static final native int gcnew_SWTTreeViewRowPresenter(int treeView);
/** @method flags=gcnew */
public static final native int gcnew_TabControl();
/** @method flags=gcnew */
public static final native int gcnew_TabItem();
/**
 * @method flags=gcnew
 * @param dp cast=(DependencyProperty^),flags=gcobject
 */
public static final native int gcnew_TemplateBindingExtension(int dp);
/** @method flags=gcnew */
public static final native int gcnew_TextDecorationCollection(int capacity); 
/**
 * @method flags=gcnew
 * @param location cast=(TextDecorationLocation)
 * @param pen cast=(Pen^),flags=gcobject
 * @param penOffsetUnit cast=(TextDecorationUnit)
 * @param penThicknessUnit cast=(TextDecorationUnit)
 */
public static final native int gcnew_TextDecoration(int location, int pen, double penOffset, int penOffsetUnit, int penThicknessUnit);
/**
 * @method flags=gcnew
 * @param alignment cast=(TextTabAlignment)
 */
public static final native int gcnew_TextTabProperties(int alignment, double location, int tabLeader, int aligningChar);
/** @method accessor=System::Collections::Generic::List<TextTabProperties^>,flags=gcnew */
public static final native int gcnew_TextTabPropertiesCollection(int capacity);
/** @method flags=gcnew */
public static final native int gcnew_TextBlock();
/** @method flags=gcnew */
public static final native int gcnew_TextBox();
/**
 * @method flags=gcnew
 * @param string cast=(String^),flags=gcobject
 * @param textRunProperties cast=(TextRunProperties^),flags=gcobject
 */
public static final native int gcnew_TextCharacters(int string, int offsetToFirstChar, int length, int textRunProperties);
/**
 * @method flags=gcnew
 * @param textRunProperties cast=(TextRunProperties^),flags=gcobject
 */
public static final native int gcnew_TextEndOfLine(int length, int textRunProperties);
/**
 * @method flags=gcnew
 * @param textRunProperties cast=(TextRunProperties^),flags=gcobject
 */
public static final native int gcnew_TextEndOfParagraph(int length, int textRunProperties);
/** @method flags=gcnew */
public static final native int gcnew_TiffBitmapEncoder();
/** @method flags=gcnew */
public static final native int gcnew_TimeSpan(long ticks);
/** @method flags=gcnew */
public static final native int gcnew_Thickness(double left, double top, double right, double bottom);
/** @method flags=gcnew */
public static final native int gcnew_ToggleButton();
/** @method flags=gcnew */
public static final native int gcnew_ToolBar();
/** @method flags=gcnew */
public static final native int gcnew_ToolBarTray();
/** @method flags=gcnew */
public static final native int gcnew_TransformGroup();
/** @method flags=gcnew */
public static final native int gcnew_TranslateTransform(double offsetX, double offsetY);
/**
 * @method flags=gcnew
 * @param direction cast=(FocusNavigationDirection)
 */
public static final native int gcnew_TraversalRequest(int direction);
/** @method flags=gcnew */
public static final native int gcnew_TreeView();
/** @method flags=gcnew */
public static final native int gcnew_TreeViewItem();
/**
 * @method flags=gcnew
 * @param fontFamily cast=(FontFamily^),flags=gcobject
 * @param style cast=(FontStyle),flags=gcobject
 * @param weight cast=(FontWeight),flags=gcobject
 * @param stretch cast=(FontStretch),flags=gcobject
 */
public static final native int gcnew_Typeface(int fontFamily, int style, int weight, int stretch);
/** @method flags=gcnew */
public static final native int gcnew_UserControl();
/**
 * @method flags=gcnew
 * @param str cast=(String^),flags=gcobject
 * @param type cast=(UriKind)
 */
public static final native int gcnew_Uri(int str, int type);
/** @method accessor=System::Windows::Forms::WebBrowser,flags=gcnew */
public static final native int gcnew_WebBrowser();
/** @method accessor=System::Windows::Forms::Integration::WindowsFormsHost,flags=gcnew */
public static final native int gcnew_WindowsFormsHost();
/** @method flags=gcnew */
public static final native int gcnew_Window();
/**
 * @method flags=gcnew
 * @param source cast=(BitmapSource^),flags=gcobject
 */
public static final native int gcnew_WriteableBitmap (int source);
/**
 * @method flags=gcnew
 * @param pixelFormat cast=(PixelFormat),flags=gcobject
 * @param palette cast=(BitmapPalette^),flags=gcobject
 */
public static final native int gcnew_WriteableBitmap (int pixelWidth, int pixelHeight, double dpiX, double dpiY, int pixelFormat, int palette);
/** @method flags=no_gen */
public static final native void memcpy(char[] dest, int src, int size);
/**
 * @method flags=no_gen
 * @param dest flags=no_in critical
 * @param src cast=(array<Byte>^),flags=gcobject
 */
public static final native void memcpy(byte[] dest, int src, int size);
/**
 * @method flags=no_gen
 * @param src cast=(array<Byte>^),flags=gcobject
 * @param dest flags=no_out critical
 */
public static final native void memcpy(int src, byte[] dest, int size);


//Demo
/**
 * @method flags=gcobject getter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 */
public static final native int FrameworkElement_Resources(int sender);
/**
 * @method flags=setter
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param value cast=(ResourceDictionary^),flags=gcobject
 */
public static final native void FrameworkElement_Resources(int sender, int value);
/**
 * @method accessor=System::IO::StringReader,flags=gcnew
 * @param string cast=(String^),flags=gcobject
 */
public static final native int gcnew_StringReader(int string);
/**
 * @method accessor=XmlReader::Create,flags=gcobject
 * @param stream cast=(System::IO::TextReader^),flags=gcobject
 */
public static final native int XmlReader_Create(int stream);
/**
 * @method accessor=XamlReader::Load,flags=gcobject
 * @param stream cast=(XmlReader^),flags=gcobject
 */
public static final native int XamlReader_Load(int stream);
/** @method flags=gcnew */
public static final native int gcnew_ResourceDictionary();
/**
 * @method flags=setter
 * @param sender cast=(ResourceDictionary^),flags=gcobject
 * @param uri cast=(Uri^),flags=gcobject
 */
public static final native void ResourceDictionary_Source(int sender, int uri);



/** @method flags=gcnew */
public static final native int gcnew_DiscreteDoubleKeyFrame();
/** @method flags=gcnew */
public static final native int gcnew_LinearDoubleKeyFrame();
/**
 * @method flags=gcnew
 * @param parameter cast=(Object^),flags=gcobject
 */
public static final native int gcnew_PropertyPath(int parameter);
/** @method flags=gcnew */
public static final native int gcnew_SplineDoubleKeyFrame();
/** @method flags=gcnew */
public static final native int gcnew_Storyboard();
/** @method flags=no_gen gcnew */
public static final native int gcnew_SWTAnimator(int jniRef);
/**
 * @method flags=setter
 * @param sender cast=(DoubleKeyFrame^),flags=gcobject
 */
public static final native void DoubleKeyFrame_Value(int sender, double value);
/**
 * @method flags=setter
 * @param sender cast=(DoubleKeyFrame^),flags=gcobject
 * @param value cast=(KeyTime),flags=gcobject
 */
public static final native void DoubleKeyFrame_KeyTime(int sender, int value);
/**
 * @method accessor=KeyTime::FromTimeSpan,flags=gcobject
 * @param timeSpan cast=(TimeSpan),flags=gcobject
 */
public static final native int KeyTime_FromTimeSpan(int timeSpan);
/**
 * @method flags=cpp
 * @param sender cast=(Storyboard^),flags=gcobject
 * @param containingObject cast=(FrameworkElement^),flags=gcobject
 */
public static final native void Storyboard_Begin(int sender, int containingObject, boolean isControllable);
/**
 * @method flags=cpp
 * @param sender cast=(Storyboard^),flags=gcobject
 * @param containingObject cast=(FrameworkElement^),flags=gcobject
 */
public static final native void Storyboard_Pause(int sender, int containingObject);
/**
 * @method flags=cpp
 * @param sender cast=(Storyboard^),flags=gcobject
 * @param containingObject cast=(FrameworkElement^),flags=gcobject
 */
public static final native void Storyboard_Resume(int sender, int containingObject);
/**
 * @method flags=cpp
 * @param sender cast=(Storyboard^),flags=gcobject
 * @param containingObject cast=(FrameworkElement^),flags=gcobject
 */
public static final native void Storyboard_Stop(int sender, int containingObject);
/**
 * @method flags=gcobject getter
 * @param sender cast=(TimelineGroup^),flags=gcobject
 */
public static final native int TimelineGroup_Children(int sender);
/** @method accessor=SWTAnimator::DoubleValueProperty,flags=no_gen gcobject const */
public static final native int SWTAnimator_DoubleValueProperty();
/** @method accessor=SWTAnimator::IntValueProperty,flags=no_gen gcobject const */
public static final native int SWTAnimator_IntValueProperty();
/**
 * @method flags=cpp
 * @param sender cast=(FrameworkElement^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 * @param scopedElement cast=(Object^),flags=gcobject
 */
public static final native void FrameworkElement_RegisterName(int sender, int name, int scopedElement);
/**
 * @method accessor=NewValue,flags=getter
 * @param sender cast=(DependencyPropertyChangedEventArgs^),flags=gcobject
 */
public static final native double DependencyPropertyChangedEventArgs_NewValueDouble(int sender);
/**
 * @method accessor=OldValue,flags=getter
 * @param sender cast=(DependencyPropertyChangedEventArgs^),flags=gcobject
 */
public static final native double DependencyPropertyChangedEventArgs_OldValueDouble(int sender);
/**
 * @method accessor=NewValue,flags=getter
 * @param sender cast=(DependencyPropertyChangedEventArgs^),flags=gcobject
 */
public static final native int DependencyPropertyChangedEventArgs_NewValueInt(int sender);
/**
 * @method accessor=OldValue,flags=getter
 * @param sender cast=(DependencyPropertyChangedEventArgs^),flags=gcobject
 */
public static final native int DependencyPropertyChangedEventArgs_OldValueInt(int sender);
/**
 * @method accessor=Storyboard::SetTargetName
 * @param element cast=(DependencyObject^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 */
public static final native void Storyboard_SetTargetName(int element, int name);
/**
 * @method accessor=Storyboard::SetTargetProperty
 * @param element cast=(DependencyObject^),flags=gcobject
 * @param propertyPath cast=(PropertyPath^),flags=gcobject
 */
public static final native void Storyboard_SetTargetProperty(int element, int propertyPath);
/** @method flags=gcnew */
public static final native int gcnew_NameScope();
/**
 * @method accessor=NameScope::GetNameScope,flags=gcobject
 * @param dependencyObject cast=(DependencyObject^),flags=gcobject
 */
public static final native int NameScope_GetNameScope(int dependencyObject);
/**
 * @method accessor=NameScope::SetNameScope
 * @param dependencyObject cast=(DependencyObject^),flags=gcobject
 * @param nameScope cast=(INameScope^),flags=gcobject
 */
public static final native void NameScope_SetNameScope(int dependencyObject, int nameScope);
/** @method flags=gcnew */
public static final native int gcnew_KeySpline(double x1, double y1, double x2, double y2);
/**
 * @method flags=setter
 * @param sender cast=(SplineDoubleKeyFrame^),flags=gcobject
 * @param value cast=(KeySpline^),flags=gcobject
 */
public static final native void SplineDoubleKeyFrame_KeySpline(int sender, int value);
/**
 * @method flags=adder
 * @param sender cast=(Timeline^),flags=gcobject
 * @param handler cast=(EventHandler^),flags=gcobject
 */
public static final native void Timeline_Completed(int sender, int handler);
/** @method flags=gcnew */
public static final native int gcnew_Int32AnimationUsingKeyFrames();
/** @method flags=gcnew */
public static final native int gcnew_DiscreteInt32KeyFrame();
/** @method flags=gcnew */
public static final native int gcnew_LinearInt32KeyFrame();
/** @method flags=gcnew */
public static final native int gcnew_SplineInt32KeyFrame();
/**
 * @method flags=gcobject getter
 * @param sender cast=(Int32AnimationUsingKeyFrames^),flags=gcobject
 */
public static final native int Int32AnimationUsingKeyFrames_KeyFrames(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Int32KeyFrame^),flags=gcobject
 */
public static final native void Int32KeyFrame_Value(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(SplineInt32KeyFrame^),flags=gcobject
 * @param value cast=(KeySpline^),flags=gcobject
 */
public static final native void SplineInt32KeyFrame_KeySpline(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(Int32KeyFrame^),flags=gcobject
 * @param value cast=(KeyTime),flags=gcobject
 */
public static final native void Int32KeyFrame_KeyTime(int sender, int value);

/**
 * @method flags=gcobject getter
 * @param sender cast=(Timeline^),flags=gcobject
 */
public static final native int Timeline_Duration(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Duration^),flags=gcobject
 */
public static final native int Duration_TimeSpan(int sender);
/**
 * @method flags=getter
 * @param sender cast=(TimeSpan^),flags=gcobject
 */
public static final native double TimeSpan_TotalMilliseconds(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(Timeline^),flags=gcobject
 */
public static final native int Timeline_BeginTime(int sender);

/** @method flags=gcnew */
public static final native int gcnew_OuterGlowBitmapEffect();
/**
 * @method flags=gcobject getter
 * @param sender cast=(OuterGlowBitmapEffect^),flags=gcobject
 */
public static final native int OuterGlowBitmapEffect_GlowColor(int sender);
/**
 * @method flags=setter
 * @param sender cast=(OuterGlowBitmapEffect^),flags=gcobject
 * @param value cast=(Color),flags=gcobject
 */
public static final native void OuterGlowBitmapEffect_GlowColor(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(OuterGlowBitmapEffect^),flags=gcobject
 */
public static final native double OuterGlowBitmapEffect_GlowSize(int sender);
/**
 * @method flags=setter
 * @param sender cast=(OuterGlowBitmapEffect^),flags=gcobject
 */
public static final native void OuterGlowBitmapEffect_GlowSize(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(OuterGlowBitmapEffect^),flags=gcobject
 */
public static final native double OuterGlowBitmapEffect_Opacity(int sender);
/**
 * @method flags=setter
 * @param sender cast=(OuterGlowBitmapEffect^),flags=gcobject
 */
public static final native void OuterGlowBitmapEffect_Opacity(int sender, double value);
/**
 * @method flags=gcobject getter
 * @param sender cast=(UIElement^),flags=gcobject
 */
public static final native int UIElement_BitmapEffect(int sender);
/**
 * @method flags=setter
 * @param sender cast=(UIElement^),flags=gcobject
 * @param value cast=(BitmapEffect^),flags=gcobject
 */
public static final native void UIElement_BitmapEffect(int sender, int value);
/** @method flags=gcnew */
public static final native int gcnew_DropShadowBitmapEffect();
/**
 * @method flags=gcobject getter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native int DropShadowBitmapEffect_Color(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 * @param value cast=(Color),flags=gcobject
 */
public static final native void DropShadowBitmapEffect_Color(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native double DropShadowBitmapEffect_Direction(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native void DropShadowBitmapEffect_Direction(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native double DropShadowBitmapEffect_Opacity(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native void DropShadowBitmapEffect_Opacity(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native double DropShadowBitmapEffect_ShadowDepth(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native void DropShadowBitmapEffect_ShadowDepth(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native double DropShadowBitmapEffect_Softness(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DropShadowBitmapEffect^),flags=gcobject
 */
public static final native void DropShadowBitmapEffect_Softness(int sender, double value);
/** @method flags=gcnew */
public static final native int gcnew_BlurBitmapEffect();
/**
 * @method flags=setter
 * @param sender cast=(BlurBitmapEffect^),flags=gcobject
 */
public static final native void BlurBitmapEffect_Radius(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(BlurBitmapEffect^),flags=gcobject
 */
public static final native double BlurBitmapEffect_Radius(int sender);
/** @method flags=gcnew */
public static final native int gcnew_BevelBitmapEffect();
/**
 * @method flags=getter
 * @param handle cast=(BevelBitmapEffect^),flags=gcobject
 */
public static final native double BevelBitmapEffect_LightAngle(int handle);
/**
 * @method flags=setter
 * @param handle cast=(BevelBitmapEffect^),flags=gcobject
 */
public static final native void BevelBitmapEffect_LightAngle(int handle, double value);
/**
 * @method flags=getter
 * @param handle cast=(BevelBitmapEffect^),flags=gcobject
 */
public static final native double BevelBitmapEffect_BevelWidth(int handle);
/**
 * @method flags=setter
 * @param handle cast=(BevelBitmapEffect^),flags=gcobject
 */
public static final native void BevelBitmapEffect_BevelWidth(int handle, double value);
/**
 * @method flags=getter
 * @param handle cast=(BevelBitmapEffect^),flags=gcobject
 */
public static final native double BevelBitmapEffect_Smoothness(int handle);
/**
 * @method flags=setter
 * @param handle cast=(BevelBitmapEffect^),flags=gcobject
 */
public static final native void BevelBitmapEffect_Smoothness(int handle, double value);
/** @method flags=gcnew */
public static final native int gcnew_BitmapEffectGroup();
/**
 * @method flags=gcobject getter
 * @param sender cast=(BitmapEffectGroup^),flags=gcobject
 */
public static final native int BitmapEffectGroup_Children(int sender);

/**
 * @method flags=gcobject getter
 * @param sender cast=(HwndSource^),flags=gcobject
 */
public static final native int HwndSource_CompositionTarget(int sender);
/**
 * @method flags=setter
 * @param sender cast=(HwndTarget^),flags=gcobject
 * @param value cast=(Color),flags=gcobject
 */
public static final native void HwndTarget_BackgroundColor(int sender, int value);

/**
 * @method accessor=TypeDescriptor::GetProperties,flags=gcobject
 * @param sender cast=(Object^),flags=gcobject
 */
public static final native int TypeDescriptor_GetProperties(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(MemberDescriptor^),flags=gcobject
 */
public static final native int MemberDescriptor_Name(int sender);
/**
 * @method flags=gcobject getter
 * @param sender cast=(DependencyPropertyDescriptor^),flags=gcobject
 */
public static final native int DependencyPropertyDescriptor_DependencyProperty(int sender);
/** @method accessor=DependencyPropertyDescriptor::typeid,flags=const gcobject */
public static final native int DependencyPropertyDescriptor_typeid();
/**
 * @method accessor=DependencyPropertyDescriptor::FromProperty,flags=gcobject
 * @param propertyDescriptor cast=(PropertyDescriptor^),flags=gcobject
 */
public static final native int DependencyPropertyDescriptor_FromProperty(int propertyDescriptor);
/**
 * @method accessor=Type::GetType,flags=gcobject
 * @param typeName cast=(String^),flags=gcobject
 */
public static final native int Type_GetType(int typeName, boolean throwOnError, boolean ignoreCase);
/**
 * @method flags=cpp
 * @param sender cast=(NameScope^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 * @param scopedElement cast=(Object^),flags=gcobject
 */
public static final native void NameScope_RegisterName(int sender, int name, int scopedElement);

/** @method accessor=Panel::HeightProperty,flags=const gcobject */
public static final native int Panel_HeightProperty();
/** @method accessor=Panel::WidthProperty,flags=const gcobject */
public static final native int Panel_WidthProperty();
/** @method accessor=Canvas::TopProperty,flags=const gcobject */
public static final native int Canvas_TopProperty();
/** @method accessor=Canvas::LeftProperty,flags=const gcobject */
public static final native int Canvas_LeftProperty();
/** @method accessor=OuterGlowBitmapEffect::GlowSizeProperty,flags=const gcobject */
public static final native int OuterGlowBitmapEffect_GlowSizeProperty();
/** @method flags=gcnew */
public static final native int gcnew_Int32Animation();
/** @method flags=gcnew */
public static final native int gcnew_DoubleAnimation();
/**
 * @method flags=no_gen setter gcobject
 * @param sender cast=(Timeline^),flags=gcobject
 * @param value cast=(TimeSpan^),flags=gcobject
 */
public static final native void Timeline_BeginTime(int sender, int value);
/**
 * @method flags=setter
 * @param sender cast=(DoubleAnimation^),flags=gcobject
 */
public static final native void DoubleAnimation_To(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(DoubleAnimation^),flags=gcobject
 */
public static final native double DoubleAnimation_To(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Int32Animation^),flags=gcobject
 */
public static final native void Int32Animation_To(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(Int32Animation^),flags=gcobject
 */
public static final native int Int32Animation_To(int sender);
/**
 * @method flags=setter
 * @param sender cast=(DoubleAnimation^),flags=gcobject
 */
public static final native void DoubleAnimation_From(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(DoubleAnimation^),flags=gcobject
 */
public static final native double DoubleAnimation_From(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Int32Animation^),flags=gcobject
 */
public static final native void Int32Animation_From(int sender, int value);
/**
 * @method flags=getter
 * @param sender cast=(Int32Animation^),flags=gcobject
 */
public static final native int Int32Animation_From(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Timeline^),flags=gcobject
 */
public static final native void Timeline_DecelerationRatio(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Timeline^),flags=gcobject
 */
public static final native double Timeline_DecelerationRatio(int sender);
/**
 * @method flags=setter
 * @param sender cast=(Timeline^),flags=gcobject
 */
public static final native void Timeline_AccelerationRatio(int sender, double value);
/**
 * @method flags=getter
 * @param sender cast=(Timeline^),flags=gcobject
 */
public static final native double Timeline_AccelerationRatio(int sender);

/** @method flags=no_gen gcnew */
public static final native int gcnew_SWTAnimation(int jniRef);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(Type^),flags=gcobject
 * @param name cast=(String^),flags=gcobject
 * @param bindingFlags cast=(BindingFlags)
 */
public static final native int Type_GetMethod(int sender, int name, int bindingFlags);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(ArrayList^),flags=gcobject
 */
public static final native int ArrayList_ToArray(int sender);
/**
 * @method flags=cpp gcobject
 * @param sender cast=(MethodInfo^),flags=gcobject
 * @param obj cast=(Object^),flags=gcobject
 * @param parameters cast=(array<Object^>^),flags=gcobject
 */
public static final native int MethodInfo_Invoke(int sender, int obj, int parameters);
}