ChangeLog 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781
  1. 2003-08-22 Alexandre Pigolkine <[email protected]>
  2. * ComboBox.cs
  3. * Control.cs modofications for ComboBox sample
  4. 2003-08-22 Duncan Mak <[email protected]>
  5. * ListControl.cs (DataSource): Implementation by Brian Takita
  6. <[email protected]>.
  7. 2003-08-12 Aleksey Ryabchuk <[email protected]>
  8. * MenuItem.cs : added missing properties, so menu sample app can be compiled
  9. 2003-08-11 Aleksey Ryabchuk <[email protected]>
  10. * Control.cs : MouseButtons, PointToClient, PointToScreen were implemented.
  11. removed unnecessary check from UpdateBounds
  12. * Panel.cs : ability to change BorderStyle at runtime
  13. 2003-08-11 Aleksey Ryabchuk <[email protected]>
  14. * TreeView.cs
  15. * TreeNode.cs
  16. * TreeNodeCollection.cs
  17. * win32functions.cs : more implementation added
  18. * button.cs : fix method signature
  19. 2003-08-08 Dennis Hayes <[email protected]>
  20. * Control.cs
  21. * MonthCalander.cs
  22. * Signiture corections.
  23. * implmentation stuff changed to internal
  24. * event "e" params names changed to "pevent" type names
  25. 2003-08-03 Alexandre Pigolkine <[email protected]>
  26. * CheckBox.cs 12x12 checkmark dimensions for a moment
  27. * ControlPaint.cs DrawRadioButton implemented
  28. * RadioButton.cs painting is in OnPaint
  29. 2003-08-02 Alexandre Pigolkine <[email protected]>
  30. * CheckBox.cs painting in OnPaint implemented
  31. * CheckedListBox.cs changes to painting code
  32. * Button.cs code cleanup
  33. * Control.cs call to subclassed control can be controlled by mask
  34. * Message.cs helper properties
  35. * win32Enums.cs new values
  36. 2003-08-01 Alexandre Pigolkine <[email protected]>
  37. * ControlPaint.cs DrawStringDisabled changed
  38. * Label.cs painting moved inside OnPaint function
  39. * Button.cs disposing Graphics in OnPaint
  40. * win32functions.cs StringFormat2DrawTextFormat added
  41. 2003-07-31 Aleksey Ryabchuk <[email protected]>
  42. * TreeView.cs
  43. * TreeNode.cs
  44. * TreeNodeCollection.cs
  45. * win32enums.cs
  46. * win32functions.cs : more implementation added
  47. 2003-07-31 Alexandre Pigolkine <[email protected]>
  48. * Control.cs : do not keep oldBounds if LAYOUT_SUSPENDED is true,
  49. call OnMouseDown/Up functions
  50. * Button.cs
  51. * ButtonBase.cs painting moved inside OnPaint function
  52. * NativeWindow.cs (commented) debug output added
  53. 2003-07-31 Aleksey Ryabchuk <[email protected]>
  54. * Control.cs : anchoring algorithm was fixed to avoid inaccuracies caused by rounding
  55. * TextBoxBase.cs : set FixedHeight style for single line edit boxes
  56. 2003-07-30 Aleksey Ryabchuk <[email protected]>
  57. * TextBox.cs : ScrollBars, AcceptsReturn, CharacterCasing properties were implemented
  58. 2003-07-29 Aleksey Ryabchuk <[email protected]>
  59. * TextBoxBase.cs
  60. * TextBox.cs
  61. * Control.cs : BackColor, ForeColor, PasswordChar for edit boxes
  62. 2003-07-28 Miguel de Icaza <[email protected]>
  63. * NativeWindow.cs: Remove debugigng messages.
  64. * Control.cs: Remove debugging messages.
  65. * Label.cs: Use the border style.
  66. * win32functions.cs: Set the default to WineLib now on Linux.
  67. 2003-07-23 Miguel de Icaza <[email protected]>
  68. * win32functions.cs: Move functions that do not exist in WineLib
  69. over to Win32_Wineless, so we do not trigger the warning messages
  70. until a function tries to use them.
  71. Win32() constructor: Set a hint on the appdomain that we would
  72. prefer to have the System.Drawing API use the Win32 implementation
  73. of the API.
  74. * *.cs: Updated sources to use this.
  75. 2003-07-16 Aleksey Ryabchuk <[email protected]>
  76. * ColorDialog.cs : implemented
  77. * win32functions.cs
  78. * win32enums.cs
  79. * win32structs.cs : functions, flags and structs for ColorDialog
  80. 2003-07-01 Alexandre Pigolkine <[email protected]>
  81. * win32Structs.cs some fields cannot be marshaled
  82. OFNOTIFY structure simplified
  83. * FileDialog.cs
  84. * win32functions.cs
  85. call wine_get_unix_filename from FileOpen dialog
  86. * win32functions.cs WineLib library name changed
  87. * NativeWindow.cs CLIENTCREATESTRUCT parameter for MDI
  88. Aleksey Ryabchuk <[email protected]>
  89. 2003-06-30 Aleksey Ryabchuk <[email protected]>
  90. * Form.cs : TopLevel, AcceptButton, CancelButton
  91. * Application.cs : allow keyboard messages in modal forms
  92. * Control.cs : basic impl. of GetTopLevel, SetTopLevel
  93. 2003-06-30 Aleksey Ryabchuk <[email protected]>
  94. * Cursors.cs : VSplit, HSplit cursors
  95. * Form.cs: WindowState ( not finished ), changes to Form.Close
  96. * Splitter.cs, Toolbar.cs : started implementation
  97. 2003-06-26 Aleksey Ryabchuk <[email protected]>
  98. * TreeNode.cs
  99. * TreeNodeCollection.cs
  100. * TreeView.cs : more implementation added
  101. 2003-06-24 Aleksey Ryabchuk <[email protected]>
  102. * TreeNode.cs
  103. * TreeNodeCollection.cs
  104. * TreeView.cs : more implementation added
  105. 2003-06-12 Aleksey Ryabchuk <[email protected]>
  106. * Menu.cs
  107. * ContextMenu.cs : create context menu using CreatePopupMenu function
  108. 2003-06-12 Aleksey Ryabchuk <[email protected]>
  109. * TreeNode.cs
  110. * TreeNodeCollection.cs
  111. * TreeView.cs
  112. * win32functions.cs : started impl. of TreeView control
  113. 2003-06-12 Aleksey Ryabchuk <[email protected]>
  114. * Control.cs : don't do anything if Anchor is set to default value
  115. * SystemInformation.cs : return some system metrics
  116. * UserControl.cs : default size impl.
  117. 2003-06-11 Aleksey Ryabchuk <[email protected]>
  118. * ContextMenu.cs : SourceControl, Show method
  119. * Control.cs : ContextMenu, CanSelect, force parent to perform layout when Dock property changes
  120. * GroupBox.cs
  121. * Label.cs
  122. * Panel.cs
  123. * PictureBox.cs
  124. * Splitter.cs
  125. * ProgressBar.cs : remove Selectable style
  126. * RadioButton.cs : set TextAlign to MiddleLeft by default
  127. * tooltip.cs : override Dispose method
  128. * win32Enums.cs
  129. * win32functions.cs : flags and function for context menu
  130. 2003-06-09 Aleksey Ryabchuk <[email protected]>
  131. * Conrols.cs : Disposing property, Dispose method
  132. * Cursor.cs : Show, Hide, Copy cursor
  133. * NativeWindow.cs : destructor
  134. 2003-06-09 Aleksey Ryabchuk <[email protected]>
  135. * Control.cs : Cursor property, handle WM_SETCURSOR
  136. * Cursor.cs : started implementation
  137. * Cursors.cs : load system cursor types
  138. * win32functions.cs : DestroyCursor function
  139. 2003-06-09 Aleksey Ryabchuk <[email protected]>
  140. * HScrollBar.cs
  141. * ScrollBar.cs
  142. * VScrollBar.cs : implemented
  143. * ScrollEventArgs.cs: typo fix
  144. 2003-06-09 Aleksey Ryabchuk <[email protected]>
  145. * AxHost.cs
  146. * MonthCalendar.cs : fixed issues breaking the build
  147. 2003-06-09 Dennis Hayes <[email protected]>
  148. for Gopal V <[email protected]>
  149. * MonthCalendar.cs
  150. * AxHost.cs
  151. Fixed overrides
  152. 2003-06-07 Alexandre Pigolkine <[email protected]>
  153. * Control.cs
  154. * Form.cs
  155. * ScrollableControl.cs
  156. DockStyle.None & AnchorStyles
  157. 2003-06-06 Aleksey Ryabchuk <[email protected]>
  158. * HScrollBar.cs
  159. * ScrollBar.cs
  160. * VScrollBar.cs
  161. * win32Enums.cs : started implementation of scrollbar classes
  162. 2003-06-06 Aleksey Ryabchuk <[email protected]>
  163. * Form.cs : MaximumSize, MinimumSize, TopMost were implemented, small fixes and improvements
  164. * win32Structs.cs: WINDOWPOS structure
  165. 2003-06-05 Aleksey Ryabchuk <[email protected]>
  166. * Form.cs : ControlBox, HelpButton, MaximizeBox, MinimizeBox, maximumSize
  167. * win32Structs.cs: MINMAXINFO structure
  168. 2003-06-04 Aleksey Ryabchuk <[email protected]>
  169. * Control.cs
  170. * Form.cs : KeyPreview, ShowInTaskBar
  171. 2003-06-02 Alexandre Pigolkine <[email protected]>
  172. * Application.cs
  173. * ComboBox.cs
  174. * Control.cs
  175. change to ContainsFocus/Focused properties
  176. 2003-04-25 Miguel de Icaza <[email protected]>
  177. * SystemInformation.cs (ComputerName): Bug fix: we need to trim down the size
  178. 2003-05-30 Aleksey Ryabchuk <[email protected]>
  179. * GroupBox.cs : take BackColor into account
  180. 2003-05-27 Aleksey Ryabchuk <[email protected]>
  181. * Control.cs : helper method getParentForm
  182. * Form.cs : ActiveForm , FormBorderStyle implemented
  183. * GroupBox.cs : some chages in drawing code, don't register another window class
  184. * FormBorderStyle.cs : fixed typo
  185. * win32functions.cs : UpdateWindowExStyle added, new prototypes for GetActiveWindow, GetForegroundWindow
  186. 2003-05-27 Aleksey Ryabchuk <[email protected]>
  187. * Button.cs
  188. * CheckBox.cs
  189. * CheckedListBox.cs
  190. * ComboBox.cs
  191. * HScrollBar.cs
  192. * ListBox.cs
  193. * ListView.cs
  194. * PrintPreviewControl.cs
  195. * RichTextBox.cs
  196. * ScrollBar.cs
  197. * Splitter.cs
  198. * ToolBar.cs
  199. * TreeView.cs
  200. * VScrollBar.cs : changed to use base implementation of CreateParams
  201. 2003-05-27 Aleksey Ryabchuk <[email protected]>
  202. * Control.cs : implemented GetChildIndex, BringToFront, UpdateZOrder, update z-order when recreating handle,
  203. * win32Strcuts.cs
  204. * win32Enums.cs : use ansi CharSet for tooltips
  205. 2003-05-27 Aleksey Ryabchuk <[email protected]>
  206. * Contols.cs : changes to SetVisibleCore, Invalidate (bool) is implemented
  207. * NativeWindow.cs : don't use CS_VREDRAW and CS_HREDRAW flags
  208. * ImageList.cs
  209. * ImageListStreamer.cs : small fixes
  210. * TabControl.cs
  211. * TabPage.cs : image list support was added
  212. 2003-05-26 Aleksey Ryabchuk <[email protected]>
  213. * ImageListStreamer.cs: added deserialization code
  214. * win32functions.cs : added some prototypes required for ImageList impl.
  215. * win32strcuts.cs : added new structs, switched to CharSet.Ansi for TCITEM struct
  216. * win32Enums.cs : use ansi messages for tab control
  217. 2003-05-20 Aleksey Ryabchuk <[email protected]>
  218. * win32functions.cs
  219. * NativeWindow.cs : fixed some issues causing problems when running SWF on Linux
  220. 2003-05-20 Aleksey Ryabchuk <[email protected]>
  221. * FileDialog.cs : more implementation added
  222. * win32Enums.cs : added some error codes for common dialogs
  223. * win32functions.cs : added prototype for CommDlgExtendedError
  224. 2003-05-19 Aleksey Ryabchuk <[email protected]>
  225. * CommonDialog.cs
  226. * FileDialog.cs
  227. * OpenFileDialog.cs
  228. * win32Enums.cs
  229. * win32Structs.cs : more implementation added
  230. 2003-05-16 Aleksey Ryabchuk <[email protected]>
  231. * CommonDialog.cs
  232. * FileDialog.cs
  233. * win32Enums.cs
  234. * win32functions.cs : started impl. of OpenFile dialog
  235. 2003-05-16 Aleksey Ryabchuk <[email protected]>
  236. * DomainUpDown.cs : changes to OnTextBoxKeyDown
  237. * UpDownBase.cs : added impl. to BackColor and BackgroundImage
  238. 2003-05-12 Aleksey Ryabchuk <[email protected]>
  239. * Control.cs : ResizeRedraw, removed some unused code
  240. * DomainUpDown.cs :
  241. * UpDownBase.cs : some improvements
  242. 2003-05-12 Aleksey Ryabchuk <[email protected]>
  243. * Application.cs
  244. * ContainerControl.cs
  245. * Control.cs
  246. * Form.cs
  247. * ScrollableControl.cs
  248. * StatusBar.cs
  249. * TabControl.cs
  250. * TabPage.cs : changes in the code for TAB key handling
  251. 2003-05-09 Aleksey Ryabchuk <[email protected]>
  252. * Control.cs
  253. * Form.cs
  254. * GroupBox.cs
  255. * Label.cs
  256. * UpDownBase.cs : some new stuff related to focus movement by the TAB key
  257. 2003-05-08 Aleksey Ryabchuk <[email protected]>
  258. * Control.cs : started implementation of keyboard handling
  259. * CroupBox.cs : set UserPaint style
  260. * TextBoxBase.cs : set subclass flag to allow catching of keyboard events
  261. 2003-05-07 Aleksey Ryabchuk <[email protected]>
  262. * Control.cs : static RegisterDefaultWindowClass method was added
  263. * ScrollableControl.cs : registration of "mono_scrollable_control" was moved to Control class
  264. * win32functions.cs : new constant DEFAULT_WINDOW_CLASS
  265. * PictureBox.cs : implemented
  266. 2003-05-07 Aleksey Ryabchuk <[email protected]>
  267. * Control.cs : use WS_OVERLAPPED instead of WS_OVERLAPPEDWINDOW, update text field in get Text property
  268. * TextBox.cs : use styles provided by TextBoxBase
  269. * TextBoxBase.cs : more methods and properties were implemented
  270. * win32enums.cs : messages and notifications for EDIT control
  271. 2003-05-02 Aleksey Ryabchuk <[email protected]>
  272. * Control.cs : call OnTextChange
  273. * UpdownBase.cs
  274. * DomainUpDown.cs : some more implementation
  275. * TextBox.cs : TextAlign, use base.CreateParams
  276. * TextBoxBase.cs : use base.CreateParams
  277. * Win32enums.cs : styles for edit box
  278. 2003-04-30 Aleksey Ryabchuk <[email protected]>
  279. * TabControl.cs
  280. * TabPage.cs : prevent pages from being added to the TabControl multiple times
  281. 2003-04-30 Aleksey Ryabchuk <[email protected]>
  282. * Control.cs : some fixes, added call to OnControlAdded, update visibility flag in Show and Hide
  283. * GroupBox.cs
  284. * Label.cs
  285. * ButtoBase.cs : use base.CreateParams
  286. * PictureBox.cs : call base.OnResize
  287. * RadioButton.cs : implemented
  288. * TabControl.cs
  289. * TabPage.cs : some fixes
  290. 2003-04-29 Aleksey Ryabchuk <[email protected]>
  291. * Control.cs : call OnResize from OnSizeChanged
  292. * TabControl.cs : small fixes
  293. * Win32enums.cs : constants for ToolTip notifications
  294. 2003-04-28 Alexandre Pigolkine <[email protected]>
  295. * monogc.c
  296. * makefile small improvements
  297. 2003-04-26 Alexandre Pigolkine <[email protected]>
  298. * monogc.c GC stubs for Mini
  299. * win32functions.cs EntryPoint added for some functions
  300. 2003-04-25 Miguel de Icaza <[email protected]>
  301. * SystemInformation.cs (ComputerName): Implement this.
  302. 2003-04-25 Aleksey Ryabchuk <[email protected]>
  303. * Control.cs : check if control is already in control collection, Created property,
  304. ControlCollection.RemoveAt reimplemented using ControlCollection.Remove
  305. * TabControl.cs
  306. * TabPage.cs : some more implementation
  307. * win32structs.cs: TCITEMHEADER replaced with TCITEM
  308. 2003-04-24 Aleksey Ryabchuk <[email protected]>
  309. * Control.cs: change to CreateControlInstance function
  310. * Panel.cs: use base CreateParams
  311. * TabControl.cs
  312. * TabPage : started implementing
  313. * win32Enums.cs
  314. * win32Structs.cs
  315. * win32functions.cs : messages, styles for TabControl
  316. 2003-04-24 Alexandre Pigolkine <[email protected]>
  317. * Button.cs paint with Back/Fore colors
  318. * ComboBox.cs fix to notification handler
  319. * ContainerControl.cs
  320. * ControlStyles.cs
  321. * ListBox.cs
  322. * Panel.cs changes for ControlStyles
  323. * Control.cs ControlStyles, BackColor, painting logic
  324. * DrawItemEventArgs.cs temporary fix to avoid crach in jit
  325. 2003-04-23 Aleksey Ryabchuk <[email protected]>
  326. * Application.cs : new internal functions enterModalLoop, exitModalLoop
  327. * Button.cs : changes in DialogResult and OnClick
  328. * Control.cs : new internal getOwnerWindow method, recreate child windows in RecreateHandle as well
  329. * form.cs : implementation of modal forms
  330. * win32enums.cs : constants for GetWindow function
  331. * win32functions.cs : GetWindow , IsDialogMessage added
  332. 2003-04-22 Aleksey Ryabchuk <[email protected]>
  333. * Control.cs : implementation of docking
  334. * Form.cs : small changes regarding resizing of MDI client window
  335. * StatusBar.cs : update parts on Layout event, new style to prevent resizing by the system
  336. 2003-04-17 Aleksey Ryabchuk <[email protected]>
  337. * Control.cs : implementation of scale functions, bug-fix in ControlCollection.Add
  338. * Form.cs : implementation of ScaleCore method
  339. 2003-04-17 Aleksey Ryabchuk <[email protected]>
  340. * ImageList.cs
  341. * ImageListStreamer.cs : started to implement
  342. * Control.cs : changes in implementation of size-related functions
  343. * Form.cs : small modifications to reflect changes in Contol class
  344. 2003-04-15 Aleksey Ryabchuk <[email protected]>
  345. * NativeWindow.cs : don't assign window ID when it was already assigned by the system
  346. 2003-04-11 Aleksey Ryabchuk <[email protected]>
  347. * Control.cs : some new functions implemented, using BitVector32
  348. instead of declaring separate boolean varibales for every control status
  349. 2003-04-11 Aleksey Ryabchuk <[email protected]>
  350. * Control.cs
  351. * Form.cs
  352. * MainMenu.cs
  353. * Menu.cs
  354. * MenuItem.cs
  355. * NativeWindow.cs
  356. * win32functions.cs : some changes related to implementation of MDI interface
  357. 2003-04-11 Aleksey Ryabchuk <[email protected]>
  358. * Control.cs : init bounds in ctor, invisible parking window
  359. * TrackBar.cs
  360. * ProgressBar.cs.cs
  361. * DateTimePicker.cs
  362. * StatusBar.cs : use base version of CreateParams
  363. * ScrollableControl.cs : use base version of CreateParams, removed CS_VREDRAW, CS_HREDRAW styles
  364. * Form.cs : reset parent back to zero for the main form
  365. * StatusBarPanel.cs : small bug-fix
  366. 2003-04-6 DennisHayes <[email protected]>
  367. * Converted to Unix newlines
  368. * Changed copyright from 2002 to 2002/3
  369. 2003-04-6 DennisHayes <[email protected]>
  370. * CheckOutList Update, removed everyone from list, active developers need to readd.
  371. * Binding.cs Marked some funmctions for Compact frame work
  372. * RadioButton.cs //removed inherited members
  373. * RichTextBox.cs //removed inherited members
  374. * Splitter.cs //removed a throw not implmented so some samples could run.
  375. 2003-04-06 Alexandre Pigolkine <[email protected]>
  376. * Control.cs
  377. * Form.cs
  378. * NativeWindow.cs
  379. * Win32functions.cs
  380. * Win32structs.cs : initial implementation of MDI interface.
  381. Aleksey Ryabchuk <[email protected]>
  382. * Button.cs
  383. * CheckedListBox.cs
  384. * Control.cs
  385. * GroupBox.cs
  386. * ListBox.cs
  387. * ScrollableControl.cs
  388. Attempt to minimize fliker effect
  389. Alexandre Pigolkine
  390. 2003-03-30 Alexandre Pigolkine <[email protected]>
  391. * DateTimePicker.cs
  392. * StatusBar.cs
  393. * tooltip.cs
  394. Fixed AllocCoTaskMem issure. Bug-fix for DTP.
  395. Aleksey Ryabchuk <[email protected]>
  396. 2003-03-29 Alan Tam <[email protected]>
  397. * DataGrid.cs
  398. stubbed a missing method
  399. 2003-03-26 Alexandre Pigolkine <[email protected]>
  400. * NumericUpDown.cs
  401. * ScrollableControl.cs
  402. * UpDownBase.cs
  403. * win32Structs.cs
  404. implementation of NumericUpDown
  405. * tooltip.cs
  406. * win32Enums.cs
  407. * win32functions.cs
  408. implementation of ToolTip control class.
  409. Aleksey Ryabchuk <[email protected]>
  410. 2003-03-25 Alexandre Pigolkine <[email protected]>
  411. * CheckedListBox.cs
  412. * ListBox.cs
  413. Implementation of Collections
  414. Alexandre Pigolkine <[email protected]>
  415. * Control.cs
  416. * DateTimePicker.cs
  417. * win32Enums.cs
  418. notification handling for DateTimePicker control.
  419. * StatusBar.cs
  420. * TrackBar.cs
  421. small modifications.
  422. Aleksey Ryabchuk <[email protected]>
  423. 2003-03-23 Alexandre Pigolkine <[email protected]>
  424. * DateTimePicker.cs
  425. * Form.cs
  426. * ProgressBar.cs
  427. * win32Enums.cs
  428. * win32Structs.cs
  429. Implementation of ProgressBar and DateTimePicker controls by
  430. Aleksey Ryabchuk <[email protected]>
  431. * Control.cs small fix to handle scroll bar messages
  432. 2003-03-20 Alexandre Pigolkine <[email protected]
  433. * Control.cs
  434. * Form.cs
  435. * GroupBox.cs
  436. * Label.cs
  437. * Panel.cs
  438. * TrackBar.cs
  439. * win32functions.cs
  440. checkin for Aleksey Ryabchuk <[email protected]>
  441. implementation of Timer class and small modifications to other files
  442. 2003-03-18 Alexandre Pigolkine <[email protected]>
  443. * monowinehooks.c
  444. * runwine
  445. attempt to use LD_PRELOAD to override stubs in Wine
  446. * monosem.c implementation of pthread_cond*
  447. * makefile
  448. * monogc.c
  449. * monostub.c
  450. small changes to files
  451. 2003-03-17 Alexandre Pigolkine <[email protected]>
  452. * monogc.c
  453. * makefile
  454. original version of monogc.c by John Sohn <[email protected]>
  455. 2003-03-15 Alexandre Pigolkine <[email protected]>
  456. * Control.cs
  457. * Panel.cs
  458. * StatusBar.cs
  459. * StatusBarPanel.cs
  460. * win32Enums.cs
  461. * win32functions.cs
  462. checkin for Aleksey Ryabchuk ([email protected])
  463. 2003-03-15 Alexandre Pigolkine <[email protected]>
  464. * monogc.c dynamic loader for gc-wine.dll by John Sohn <[email protected]>
  465. * makefile changed to build monogc
  466. 2003-03-10 Alexandre Pigolkine <[email protected]>
  467. * Button.cs
  468. check in for Steven Stewart <[email protected]>
  469. 2003-03-09 Alexandre Pigolkine <[email protected]>
  470. * Application.cs fixed line terminators
  471. * Form.cs
  472. * TrackBar.cs
  473. * win32Enums.cs
  474. implementation of TrackBar control by Aleksey Ryabchuk ([email protected])
  475. * makefile
  476. * monostub.c
  477. * monosem.c
  478. parse command line
  479. run assembly not from main thread
  480. first implementation of pthread fuctions using Wine
  481. 2003-03-01 Alexandre Pigolkine <[email protected]>
  482. * Button.cs changed painting code
  483. * ButtonBase.cs ContentAlignment operations implemented in separate functions
  484. * CheckedListBox.cs Implementation added
  485. * ComboBox.cs small modifications
  486. * Control.cs repaint on style changes
  487. * ControlPaint.cs Implementation added
  488. * Form.cs delegate Size to Control
  489. * ImageList.cs small modifications
  490. * ListBox.cs Implementation added
  491. * ListControl.cs small modifications
  492. * NativeWindow.cs fixed line terminators
  493. * ScrollableControl.cs small modifications
  494. * win32Enums.cs declaration added
  495. * win32functions.cs Implementation added, fixed line terminators
  496. 2003-02-27 Reggie Burnett <[email protected]>
  497. * Added several external functions to Win32funcs.cs
  498. * Added necessary LoadLibrary to RichTextEdit to load common control library
  499. 2003-02-26 Reggie Burnett <[email protected]>
  500. * Form.Close now actually destroys the Window
  501. * Application now closes when launching form is closed
  502. 2003-02-19 Alexandre Pigolkine <[email protected]>
  503. * Button.cs
  504. * CheckedListBox.cs
  505. * ComboBox.cs
  506. * Control.cs
  507. * ControlPaint.cs
  508. * Form.cs
  509. * ListBox.cs
  510. * win32functions.cs
  511. implementation added
  512. 2003-02-11 Alexandre Pigolkine <[email protected]>
  513. * ButtonBase.cs
  514. * ComboBox.cs
  515. * Control.cs
  516. * ListControl.cs
  517. * NativeWindow.cs
  518. implementation added
  519. The following sample from .Net SDK can run:
  520. Samples\QuickStart\winforms\samples\controlreference\comboboxctl\cs\
  521. 2003-02-09 Alexandre Pigolkine <[email protected]>
  522. * Button.cs
  523. * ButtonBase.cs
  524. * CheckBox.cs
  525. * ComboBox.cs
  526. * Control.cs
  527. * ControlPaint.cs
  528. implementation added
  529. * Message.cs
  530. bug fixed
  531. * win32Enums.cs
  532. * win32functions.cs
  533. * win32Structs.cs
  534. declarations added
  535. 2003-02-07 Alexandre Pigolkine <[email protected]>
  536. * Font.cs removed
  537. * Button.cs
  538. * ControlPaint.cs
  539. * ComboBox.cs
  540. modified
  541. 2003-02-06 Alexandre Pigolkine <[email protected]>
  542. * Button.cs Painting code is implemented
  543. * ButtonBase.cs TextAlign property implemented, WM_COMMAND handling is modified
  544. * ComboBox.cs Initial implementation of ObjectCollection, properties and WM_COMMAND
  545. * Control.cs Changes to WindProc of Control and ControlNativeWindow classes,
  546. to some properties, window handle creation, ControlCollection
  547. Initial implementation windows control subclassing, message reflection,
  548. ISynchrinizeInvoke interface.
  549. * ControlPaint.cs Initial implementation of DrawBorder3D and DrawButton
  550. * Form.cs Modification to constructor, window handle creation,
  551. WM_COMMAND handling, WndProc
  552. * ListBox.cs Implementation of DrawMode.OwnerDrawFixed and OwnerDrawVariable
  553. * Message.cs WParam helpers added
  554. * MessageBox.cs By default MessageBox.Show(string) brings TASKMODAL message box
  555. * NativeWindow.cs Implemented OnThreadException
  556. * PaintEventArgs.cs Dispose() method
  557. * ProgressBar.cs Small modifications to implementation
  558. * SystemInformation.cs CaptionHeight implemented
  559. * CheckBox.cs
  560. * GroupBox.cs
  561. * Label.cs
  562. * Panel.cs
  563. * TextBox.cs
  564. CreateParams property modified
  565. * win32enums.cs enums added
  566. * win32functions.cs functions added
  567. * win32struct.cs 2 structs modified
  568. * Application.cs
  569. * DrawItemEventArgs.cs
  570. line terminators fixed
  571. The following samples from .Net SDK can run:
  572. Samples\QuickStart\howto\samples\winforms\errorhandler\cs\
  573. Samples\QuickStart\howto\samples\winforms\ownerdrawlistbox\cs\
  574. Samples\QuickStart\howto\samples\winforms\threadmarshal\cs\
  575. Samples\QuickStart\winforms\samples\accessible\cs\
  576. Samples\QuickStart\winforms\samples\controlreference\buttonctl\cs\
  577. 2003-31-1 John Sohn <[email protected]>
  578. * makefile: cleaned and reduced dependencies to hard-coded paths
  579. * monostub.c: updated for compliance with the latest Mono and WineLib
  580. 2002-12-9 DennisHayes <[email protected]>
  581. * Form.cs
  582. * KeysConverter.cs
  583. * Label.cs
  584. * LinkArea.cs
  585. * LinkLabel.cs
  586. * ListBindingConverter.cs
  587. * ListBox.cs
  588. * ListControl.cs
  589. * ListView.cs
  590. * ListViewItem.cs
  591. * ListViewItemConverter.cs
  592. * MainMenu.cs
  593. * Menu.cs
  594. * MenuItem.cs
  595. * NativeWindow.cs
  596. * NumericUpDown.cs
  597. * OpacityConverter.cs
  598. * OSFeature.cs
  599. * PictureBox.cs
  600. * PrintControllerWithStatusDialog.cs
  601. * PrintDialog.cs
  602. * PrintPreviewControl.cs
  603. * PropertyManager.cs
  604. * RadioButton.cs
  605. * Screen.cs
  606. * ScrollableControl.cs
  607. * ScrollBar.cs
  608. * SendKeys.cs
  609. * SplitterEventArgs.cs
  610. * StatusBar.cs
  611. * SystemInformation.cs
  612. * TextBoxBase.cs
  613. * ToolBar.cs
  614. * TrackBar.cs
  615. * TreeNode.cs
  616. * TreeNodeCollection.cs
  617. * TreeNodeConverter.cs
  618. * TreeView.cs
  619. * cleanup, fixes, some implmentation
  620. 2002-12-6 DennisHayes <[email protected]>
  621. * checkin for Alexandre Pigolkine ([email protected])
  622. * Form.cs
  623. * Menu.cs
  624. * MenuItem.cs
  625. * Implmentation
  626. 2002-12-6 DennisHayes <[email protected]>
  627. * Control.cs
  628. * Form.cs
  629. * MonthCalendar.cs
  630. * Screen.cs
  631. * SelectionRange.cs
  632. * SelectionRangeConverter.cs
  633. * TabPage.cs
  634. * TextBox.cs
  635. * Timer.cs
  636. * ToolBarButton.cs
  637. * TrackBar.cs
  638. * UpDownBase.cs
  639. * UserControl.cs
  640. * tooltip.cs
  641. * cleanup, dead code removeal, replaced throw not implmented's with //FIXME:s
  642. 2002-12-3 DennisHayes <[email protected]>
  643. * *.cs
  644. * switched to unix style line terminiators
  645. 2002-12-3 DennisHayes <[email protected]>
  646. * 140 files changed. replaced throw notimplmenteds with FIXME:s, removed dead code,
  647. * corrected
  648. 2002-12-1 DennisHayes <[email protected]>
  649. * AccessibleObject.cs
  650. * Application.cs
  651. * ApplicationContext.cs
  652. * AxHost.cs
  653. * Binding.cs
  654. * BindingContext.cs
  655. * Button.cs
  656. * CheckBox.cs
  657. * CheckedListBox.cs
  658. * Clipboard.cs
  659. * ColorDialog.cs
  660. * ColumnHeader.cs
  661. * ComboBox.cs
  662. * CommonDialog.cs
  663. * ContainerControl.cs
  664. * ContextMenu.cs
  665. * Control.cs
  666. * ControlBindingsCollection.cs
  667. * ControlPaint.cs
  668. * CreateParams.cs
  669. * CurrencyManager.cs
  670. * Cursor.cs
  671. * CursorConverter.cs
  672. * Cursors.cs
  673. * DataFormats.cs
  674. * DataGrid.cs
  675. * DataGridTableStyle.cs
  676. * DataGridTextBox.cs
  677. * DataGridTextBoxColumn.cs
  678. * DataObject.cs
  679. * ErrorProvider.cs
  680. * Form.cs
  681. * removed some throw notimplmented ecexptions
  682. * Some small implmentaions
  683. * some dead code removal
  684. 2002-11-28 DennisHayes <[email protected]>
  685. * In visual studio, I added a SWFTest project to the SWF solution.
  686. * Using Microsoft's swf.dll, I added one of each possible stock controls to the form.
  687. * I closed the form (swf design stuff i svery incomplete).
  688. * I Removed the reference to MS's swf.dll, and added a reference to the SWF project.
  689. * The result compiles, runs, and can be closed, without crashing in windows.
  690. * PrintPreviewDialog is the only item (other than crystal reports) on the
  691. * standard toolbar that is not included.
  692. * When run, a standard window comes up, not a dialog/form type window.
  693. * The form is as small as possible, just a caption bar of minimum width
  694. * with control bax and min/max box. It can be resized to any size fine.
  695. * no controls are actualy displayed. they may be of zero size, or it
  696. * may be due to the window not being a dialog box, or it may be anything.
  697. * ApplicationContext.cs
  698. * Button.cs
  699. * ChangeLog
  700. * CheckBox.cs
  701. * CheckedListBox.cs
  702. * ColorDialog.cs
  703. * ComboBox.cs
  704. * ContainerControl.cs
  705. * Control.cs
  706. * DataGrid.cs
  707. * DateTimePicker.cs
  708. * DomainUpDown.cs
  709. * ErrorProvider.cs
  710. * FileDialog.cs
  711. * FontDialog.cs
  712. * Form.cs
  713. * GroupBox.cs
  714. * HelpProvider.cs
  715. * HScrollBar.cs
  716. * ImageList.cs
  717. * Label.cs
  718. * LinkLabel.cs
  719. * ListBox.cs
  720. * ListControl.cs
  721. * ListView.cs
  722. * logfile.txt
  723. * MainMenu.cs
  724. * Menu.cs
  725. * MenuItem.cs
  726. * NativeWindow.cs
  727. * NotifyIcon.cs
  728. * NumericUpDown.cs
  729. * OpenFileDialog.cs
  730. * PageSetupDialog.cs
  731. * Panel.cs
  732. * PictureBox.cs
  733. * PrintDialog.cs
  734. * PrintPreviewControl.cs
  735. * PrintPreviewDialog.cs
  736. * ProgressBar.cs
  737. * RadioButton.cs
  738. * RichTextBox.cs
  739. * SaveFileDialog.cs
  740. * ScrollableControl.cs
  741. * ScrollBar.cs
  742. * Splitter.cs
  743. * StatusBar.cs
  744. * System.Windows.Forms.csproj
  745. * System.Windows.Forms.csproj.user
  746. * TabControl.cs
  747. * TextBox.cs
  748. * TextBoxBase.cs
  749. * Timer.cs
  750. * ToolBar.cs
  751. * ToolBarButton.cs
  752. * tooltip.cs
  753. * TrackBar.cs
  754. * TreeNode.cs
  755. * TreeNodeCollection.cs
  756. * TreeView.cs
  757. * UpDownBase.cs
  758. * UserControl.cs
  759. * VScrollBar.cs
  760. * win32Enums.cs
  761. * win32functions.cs
  762. 2002-11-27 DennisHayes <[email protected]>
  763. * checkin for Alexandre Pigolkine ([email protected]) with minor changes
  764. * Control.cs
  765. * MainMenu.cs
  766. * Menu.cs
  767. * MenuItem.cs
  768. * NativeWindow.cs
  769. * win32Enums.cs
  770. * win32functions.cs
  771. * WIN32 implmentation
  772. 2002-11-24 DennisHayes <[email protected]>
  773. * Application.cs
  774. * Control.cs
  775. * Form.cs
  776. * Message.cs
  777. * NativeWindow.cs
  778. * ScrollableControl.cs
  779. * win32functions.cs
  780. * win32Structs.cs
  781. * Fixed added more win32 stuff
  782. * On windows in Visual studio and runs my test program, but does
  783. * not display a window. the window Handle is null, so the size gets set to 0,0.
  784. 2002-11-23 DennisHayes <[email protected]>
  785. checked in for Francois-Denis Gonthier
  786. * win32functions.cs
  787. * win32Structs.cs
  788. * Menu.cs
  789. * ScrollableControl.cs
  790. * MenuItem.cs
  791. * NativeWindow.cs
  792. * Form.cs
  793. * move some more stuff from monostub to c#
  794. * converted a couple of files to unix style line end
  795. * some implmementation
  796. 2002-11-17 DennisHayes <[email protected]>
  797. * AccessibleObject.cs
  798. * Removed COMvisible. Docs say yes, but verifer says no
  799. 2002-11-17 DennisHayes <[email protected]>
  800. * Application.cs
  801. * Button.cs
  802. * Control.cs
  803. * Form.cs
  804. * Label.cs
  805. * ListBox.cs
  806. * Menu.cs
  807. * MessageBox.cs
  808. * NativeWindow.cs
  809. * PrintPreviewDialog.cs
  810. * ScrollableControl.cs
  811. * ScrollBar.cs
  812. * VScrollBar.cs
  813. * Made changes releated to the new win32 stuff
  814. 2002-11-17 DennisHayes <[email protected]>
  815. * Win32Enums.cs
  816. * Win32Handles.cs
  817. * Win32Interfaces.cs
  818. * Win32RegistryUtil.cs
  819. * Win32Structs.cs
  820. * Completed merging files from Carlos Harvey Perez
  821. * Moved all parts of Win32.cs to these files
  822. * eliminated Win32.cs.
  823. *
  824. * many things moved from win32.cs still commented out.
  825. * Also needs to be mono styled.
  826. * Win32.cs - removed
  827. 2002-11-12 DennisHayes <[email protected]>
  828. * Win32Enums.cs
  829. * Win32Handles.cs
  830. * Win32Interfaces.cs
  831. * Win32RegistryUtil.cs
  832. * Win32Structs.cs
  833. * Added files from Carlos Harvey Perez
  834. ** Thanks Carlos! **
  835. * Moved all parts of Win32.cs to these files
  836. * Execpt for functions. Will merge functions
  837. * and eliminate remove Win32.cs soon.
  838. *
  839. * most things moved from win32.cs still commented out.
  840. * Also needs to be mono styled.
  841. * Win32.cs
  842. * Moved stuff from win32.cs to files from Carlos.2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  843. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  844. * ListBox.cs: added ItemHeight and DrawMode properties. Fixes the build
  845. in unix.
  846. * ListBox.cs: added ItemHeight and DrawMode properties. Fixes the build
  847. in unix.
  848. 2002-11-02 Miguel de Icaza <[email protected]>
  849. * Win32.cs: Added IsMenu, CreateMenu, AppendMenuA, DestroyMenu entry points.
  850. 2002-10-29 DennisHayes <[email protected]>
  851. * AmbientProperties.cs
  852. * Application.cs
  853. * ApplicationContext.cs
  854. * CheckBox.cs
  855. * CheckedListBox.cs
  856. * ColumnHeader.cs
  857. * ContainerControl.cs
  858. * ContextMenu.cs
  859. * Control.cs
  860. * Cursors.cs
  861. * HScrollBar.cs
  862. * ListBox.cs
  863. * MainMenu.cs
  864. * Menu.cs
  865. * MenuItem.cs
  866. * MessageBox.cs
  867. * NativeWindow.cs
  868. * PictureBox.cs
  869. * ScrollableControl.cs
  870. * ScrollBar.cs
  871. * System.Windows.Forms.csproj
  872. * System.Windows.Forms.csproj.user
  873. * VScrollBar.cs
  874. * Win32.cs
  875. * minor formating, bug fixes, and implmentation
  876. 2002-10-29 DennisHayes <[email protected]>
  877. * checkin for Alexandre Pigolkine ([email protected])
  878. * Menu classes start on implmentation
  879. 2002-10-27 DennisHayes <[email protected]>
  880. * AccessibleObject.cs
  881. * AssemblyInfo.cs
  882. * AxHost.cs
  883. * BaseCollection.cs
  884. * BindingMemberInfo.cs
  885. * BindingsCollection.cs
  886. * ButtonBase.cs
  887. * ColumnClickEventArgs.cs
  888. * ComboBox.cs
  889. * ContainerControl.cs
  890. * ContentsResizedEventArgs.cs
  891. * Control.cs
  892. * ControlEventArgs.cs
  893. * ConvertEventArgs.cs
  894. * DateBoldEventArgs.cs
  895. * DateRangeEventArgs.cs
  896. * DomainUpDown.cs
  897. * DragEventArgs.cs
  898. * DrawItemEventArgs.cs
  899. * FolderBrowserDialog.cs
  900. * Form.cs
  901. * GiveFeedbackEventArgs.cs
  902. * HelpEventArgs.cs
  903. * InputLanguageChangedEventArgs.cs
  904. * InputLanguageChangingEventArgs.cs
  905. * InvalidateEventArgs.cs
  906. * ItemChangedEventArgs.cs
  907. * ItemCheckEventArgs.cs
  908. * ItemDragEventArgs.cs
  909. * KeyEventArgs.cs
  910. * KeyPressEventArgs.cs
  911. * Keys.cs
  912. * LabelEditEventArgs.cs
  913. * LayoutEventArgs.cs
  914. * LinkClickedEventArgs.cs
  915. * LinkLabelLinkClickedEventArgs.cs
  916. * ListControl.cs
  917. * MeasureItemEventArgs.cs
  918. * MouseEventArgs.cs
  919. * NavigateEventArgs.cs
  920. * NodeLabelEditEventArgs.cs
  921. * PaintEventArgs.cs
  922. * PrintPreviewDialog.cs
  923. * PropertyTabChangedEventArgs.cs
  924. * PropertyValueChangedEventArgs.cs
  925. * QueryAccessibilityHelpEventArgs.cs
  926. * QueryContinueDragEventArgs.cs
  927. * ScrollEventArgs.cs
  928. * SelectedGridItemChangedEventArgs.cs
  929. * SplitterEventArgs.cs
  930. * StatusBarDrawItemEventArgs.cs
  931. * StatusBarPanelClickEventArgs.cs
  932. * System.Windows.Forms.csproj
  933. * System.Windows.Forms.csproj.user
  934. * TextBox.cs
  935. * ToolBarButtonClickEventArgs.cs
  936. * TreeNodeConverter.cs
  937. * TreeViewCancelEventArgs.cs
  938. * UICuesEventArgs.cs
  939. * UpDownBase.cs
  940. * UpDownEventArgs.cs
  941. * VScrollBar.cs
  942. * Stubs now compliant with .NET 1.1 Beta, except for one that has dependencies.
  943. * Added FolderBrowserDialog.cs for .NET 1.1 beta compatibility.
  944. * Completed implmentation of all *Args classes.
  945. * Updated checkoutlist.
  946. * Made fixes so this will compile using Visual studio under windows.
  947. 2002-10-26 DennisHayes <[email protected]>
  948. * Added CheckOutFile to SWF one level up from here
  949. * to keep track of who is working on what.
  950. 2002-10-24 DennisHayes <[email protected]>
  951. * AccessibleObject.cs
  952. * Application.cs
  953. * AssemblyInfo.cs
  954. * BaseCollection.cs
  955. * BindingContext.cs
  956. * BindingManagerBase.cs
  957. * BindingsCollection.cs
  958. * ContainerControl.cs
  959. * Control.cs
  960. * Font.cs
  961. * Form.cs
  962. * IAccessible.cs
  963. * InputLanguageCollection.cs
  964. * Label.cs
  965. * MessageBox.cs
  966. * PropertyTabChangedEventArgs.cs
  967. * ScrollableControl.cs
  968. * Win32.cs
  969. * WINELib.csproj
  970. * WINELib.csproj.user
  971. * winelib.sln
  972. * Changes to get winelib version running with more methods uncommented out.
  973. * Especialy trying to get CE compliance.
  974. 2002-10-22 DennisHayes <[email protected]>
  975. * Miguel moved files from WINELIB to here
  976. * See ochagelog for details
  977. 2002-10-13 DennisHayes <[email protected]>
  978. *Application.cs
  979. *AxHost.cs
  980. *ChangeLog
  981. *CheckedListBox.cs
  982. *ComboBox.cs
  983. *CurrencyManager.cs
  984. *DateTimePicker.cs
  985. *DomainUpDown.cs
  986. *FolderBrowserDialog.cs
  987. *ListBox.cs
  988. *logfile.txt
  989. *StatusBarDrawItemEventArgs.cs
  990. *TabControl.cs
  991. *TextBox.cs
  992. *TrackBar.cs
  993. *UpDownBase.cs
  994. * Updated to match .NET V1.1 Beta
  995. 2002-9-2 DennisHayes <[email protected]>
  996. * AccessibleObject.cs
  997. * AmbientProperties.cs
  998. * AxHost.cs
  999. * Button.cs
  1000. * ButtonBase.cs
  1001. * CheckBox.cs
  1002. * ColorDialog.cs
  1003. * ColumnHeader.cs
  1004. * ComboBox.cs
  1005. * ContainerControl.cs
  1006. * DataGrid.cs
  1007. * DateTimePicker.cs
  1008. * ListControl.cs
  1009. * PrintPreviewDialog.cs
  1010. * Implmented any functions.
  1011. * System.Windows.Forms.csproj
  1012. * System.Windows.Forms.csproj.user
  1013. * Added win32.cs
  1014. 2002-8-6 DennisHayes <[email protected]>
  1015. * Checked in for Ginandrea Terzi ([email protected])
  1016. * MeasureItemEventArgs.cs
  1017. * PropertyValueChangedEventArgs.cs
  1018. * ScrollEventArgs.cs
  1019. * ScrollEventType.cs
  1020. * SelectionMode.cs
  1021. * Shortcut.cs
  1022. * TickStyle.cs
  1023. * ToolBarButtonClickEventArgs.cs
  1024. * TreeViewAction.cs
  1025. * TriangleDirection.cs
  1026. * UICues.cs
  1027. * UICuesEventArgs.cs
  1028. * UpDownBase.cs
  1029. * UpDownEventHandler.cs
  1030. * Fixed syntax errors and verifier errors
  1031. 2002-8-6 DennisHayes <[email protected]>
  1032. * PropertyTabChangedEventArgs.cs
  1033. * Minor sytax bug fixes.
  1034. * System.Windows.Forms.csproj
  1035. * System.Windows.Forms.csproj.user
  1036. * System.Windows.Forms.sln
  1037. * Added support for System.Windows.Forms.Design
  1038. * Builds two dlls instead of one.
  1039. * Allows compiling for now, but needs to be fixed
  1040. 2002-8-2 DennisHayes <[email protected]>
  1041. * Checked in for Ginandrea Terzi ([email protected])
  1042. * AssemblyInfo.cs
  1043. * ColumnClickEventArgs.cs
  1044. * ContentsResizedEventArgs.cs
  1045. * ControlEventArgs.cs
  1046. * ConvertEventArgs.cs
  1047. * DateBoldEventArgs.cs
  1048. * DateRangeEventArgs.cs
  1049. * DragEventArgs.cs
  1050. * DrawItemEventArgs.cs
  1051. * GiveFeedbackEventArgs.cs
  1052. * HelpEventArgs.cs
  1053. * InputLanguageChangedEventArgs.cs
  1054. * InputLanguageChangingEventArgs.cs
  1055. * InvalidateEventArgs.cs
  1056. * ItemChangedEventArgs.cs
  1057. * ItemCheckEventArgs.cs
  1058. * ItemDragEventArgs.cs
  1059. * KeyEventArgs.cs
  1060. * KeyPressEventArgs.cs
  1061. * LabelEditEventArgs.cs
  1062. * LayoutEventArgs.cs
  1063. * LinkClickedEventArgs.cs
  1064. * LinkLabelLinkClickedEventArgs.cs
  1065. * logfile.txt
  1066. * MeasureItemEventArgs.cs
  1067. * MouseEventArgs.cs
  1068. * NavigateEventArgs.cs
  1069. * NodeLabelEditEventArgs.cs
  1070. * PaintEventArgs.cs
  1071. * PropertyTabChangedEventArgs.cs
  1072. * PropertyValueChangedEventArgs.cs
  1073. * QueryAccessibilityHelpEventArgs.cs
  1074. * QueryContinueDragEventArgs.cs
  1075. * ScrollEventArgs.cs
  1076. * SelectedGridItemChangedEventArgs.cs
  1077. * SplitterEventArgs.cs
  1078. * StatusBarDrawItemEventArgs.cs
  1079. * StatusBarPanelClickEventArgs.cs
  1080. * ToolBarButtonClickEventArgs.cs
  1081. * TreeViewCancelEventArgs.cs
  1082. * UICuesEventArgs.cs
  1083. * UpDownEventArgs.cs
  1084. * Improved ToString functions
  1085. * Completed the rest of the *.args classes
  1086. 2002-8-1 DennisHayes <[email protected]>
  1087. * Checked in for Ginandrea Terzi ([email protected])
  1088. * KeyEventArgs.cs
  1089. * KeyPressEventArgs.cs
  1090. * LabelEditEventArgs.cs
  1091. * LayoutEventArgs.cs
  1092. * LinkClickedEventArgs.cs
  1093. * LinkLabelLinkClickedEventArgs.cs
  1094. * MeasureItemEventArgs.cs
  1095. * MouseEventArgs.cs
  1096. * NavigateEventArgs.cs
  1097. * NodeLabelEditEventArgs.cs
  1098. * PaintEventArgs.cs
  1099. * PropertyTabChangedEventArgs.cs
  1100. * PropertyValueChangedEventArgs.cs
  1101. * QueryAccessibilityHelpEventArgs.cs
  1102. * QueryContinueDragEventArgs.cs
  1103. * ScrollEventArgs.cs
  1104. * SelectedGridItemChangedEventArgs.cs
  1105. * SplitterEventArgs.cs
  1106. * StatusBarDrawItemEventArgs.cs
  1107. * StatusBarPanelClickEventArgs.cs
  1108. * ToolBarButtonClickEventArgs.cs
  1109. * TreeViewCancelEventArgs.cs
  1110. * UICuesEventArgs.cs
  1111. * UpDownEventArgs.cs
  1112. * Corrected, cleaned up/ completed some *args.cs classes.
  1113. * May break build, but should be easy to fix, will verifiy
  1114. * tonight and check in any needed fixes.
  1115. 2002-8-1 DennisHayes <[email protected]>
  1116. * MonthCalendar.cs
  1117. * ButtonBase.cs
  1118. * Form.cs
  1119. * MonthCalendar commented out, stubbs need work
  1120. * GTK references removed from Buttonbase and form, to make compile easier.
  1121. * Replace GTK references as soon as build works on Windows and Linux.
  1122. * With this, SWF should compile uder visual studio
  1123. 2002-8-1 DennisHayes <[email protected]>
  1124. * TODOAttribute.cs
  1125. * ComVisible.cs
  1126. * added so the namespace can compile, remove when replaced with mono equivalents.
  1127. 2002-8-1 DennisHayes <[email protected]>
  1128. * System.Windows.Forms.csproj
  1129. * System.Windows.Forms.csproj.user
  1130. * System.Windows.Forms.sln
  1131. * AssemblyInfo.cs * Not sure if this file is needed. not a part of the namespace, just visual studio
  1132. * Added files to compile using visual Studio
  1133. 2002-8-1 DennisHayes <[email protected]>
  1134. * Getopt.cs
  1135. * removed, file contained only trash, not needed.
  1136. 2002-7-30 DennisHayes <[email protected]>
  1137. * AccessibleNavigation.cs
  1138. * AccessibleObject.cs
  1139. * AccessibleSelection.cs
  1140. * AmbientProperties.cs
  1141. * Application.cs
  1142. * ApplicationContext.cs
  1143. * AxHost.cs
  1144. * BaseCollection.cs
  1145. * Binding.cs
  1146. * BindingContext.cs
  1147. * BindingManagerBase.cs
  1148. * BindingMemberInfo.cs
  1149. * BindingsCollection.cs
  1150. * Button.cs
  1151. * ButtonBase.cs
  1152. * CaptionButton.cs
  1153. * CharacterCasing.cs
  1154. * CheckBox.cs
  1155. * CheckedListBox.cs
  1156. * CheckState.cs
  1157. * Clipboard.cs
  1158. * ColorDialog.cs
  1159. * ColumnClickEventArgs.cs
  1160. * ColumnClickEventHandler.cs
  1161. * ColumnHeader.cs
  1162. * ComboBox.cs
  1163. * CommonDialog.cs
  1164. * ContainerControl.cs
  1165. * ContentsResizedEventHandler.cs
  1166. * ContextMenu.cs
  1167. * Control.cs
  1168. * ControlBindingsCollection.cs
  1169. * ControlEventArgs.cs
  1170. * ControlEventHandler.cs
  1171. * ControlPaint.cs
  1172. * ConvertEventHandler.cs
  1173. * CreateParams.cs
  1174. * CurrencyManager.cs
  1175. * Cursor.cs
  1176. * CursorConverter.cs
  1177. * Cursors.cs
  1178. * DataFormats.cs
  1179. * DataGrid.cs
  1180. * DataGridBoolColumn.cs
  1181. * DataGridCell.cs
  1182. * DataGridColumnStyle.cs
  1183. * DataGridParentRowsLabelStyle.cs
  1184. * DataGridPreferredColumnWidthTypeConverter.cs
  1185. * DataGridTableStyle.cs
  1186. * DataGridTextBox.cs
  1187. * DataGridTextBoxColumn.cs
  1188. * DataObject.cs
  1189. * DateBoldEventArgs.cs
  1190. * DateRangeEventArgs.cs
  1191. * DateRangeEventHandler.cs
  1192. * DateTimePicker.cs
  1193. * DialogResult.cs
  1194. * DockStyle.cs
  1195. * DomainUpDown.cs
  1196. * DragAction.cs
  1197. * DragDropEffects.cs
  1198. * DragEventArgs.cs
  1199. * DragEventHandler.cs
  1200. * DrawItemEventArgs.cs
  1201. * DrawItemEventHandler.cs
  1202. * DrawItemState.cs
  1203. * DrawMode.cs
  1204. * ErrorBlinkStyle.cs
  1205. * ErrorIconAlignment.cs
  1206. * ErrorProvider.cs
  1207. * FeatureSupport.cs
  1208. * FileDialog.cs
  1209. * FlatStyle.cs
  1210. * FontDialog.cs
  1211. * Form.cs
  1212. * FormBorderStyle.cs
  1213. * FormStartPosition.cs
  1214. * FormWindowState.cs
  1215. * FrameStyle.cs
  1216. * GiveFeedbackEventHandler.cs
  1217. * GridColumnStylesCollection.cs
  1218. * GridItemCollection.cs
  1219. * GridTableStylesCollection.cs
  1220. * GroupBox.cs
  1221. * Help.cs
  1222. * HelpEventHandler.cs
  1223. * HelpProvider.cs
  1224. * HScrollBar.cs
  1225. * ImageIndexConverter.cs
  1226. * ImageList.cs
  1227. * ImageListStreamer.cs
  1228. * InputLanguage.cs
  1229. * InputLanguageChangedEventHandler.cs
  1230. * InputLanguageChangingEventHandler.cs
  1231. * InputLanguageCollection.cs
  1232. * InvalidateEventHandler.cs
  1233. * ItemChangedEventArgs.cs
  1234. * ItemChangedEventHandler.cs
  1235. * ItemCheckEventHandler.cs
  1236. * ItemDragEventHandler.cs
  1237. * KeyEventHandler.cs
  1238. * KeyPressEventArgs.cs
  1239. * KeyPressEventHandler.cs
  1240. * KeysConverter.cs
  1241. * Label.cs
  1242. * LabelEditEventHandler.cs
  1243. * LayoutEventHandler.cs
  1244. * LinkArea.cs
  1245. * LinkClickedEventHandler.cs
  1246. * LinkLabel.cs
  1247. * LinkLabelLinkClickedEventHandler.cs
  1248. * ListBindingConverter.cs
  1249. * ListBox.cs
  1250. * ListControl.cs
  1251. * ListView.cs
  1252. * ListViewItem.cs
  1253. * ListViewItemConverter.cs
  1254. * logfile.txt
  1255. * MainMenu.cs
  1256. * MeasureItemEventHandler.cs
  1257. * Menu.cs
  1258. * MenuItem.cs
  1259. * Message.cs
  1260. * MessageBox.cs
  1261. * MethodInvoker.cs
  1262. * MonthCalendar.cs
  1263. * MouseEventHandler.cs
  1264. * NativeWindow.cs
  1265. * NavigateEventHandler.cs
  1266. * NodeLabelEditEventHandler.cs
  1267. * NotifyIcon.cs
  1268. * NumericUpDown.cs
  1269. * OpacityConverter.cs
  1270. * OpenFileDialog.cs
  1271. * OSFeature.cs
  1272. * PageSetupDialog.cs
  1273. * PaintEventArgs.cs
  1274. * PaintEventHandler.cs
  1275. * Panel.cs
  1276. * PrintControllerWithStatusDialog.cs
  1277. * PrintDialog.cs
  1278. * PrintPreviewControl.cs
  1279. * PrintPreviewDialog.cs
  1280. * ProgressBar.cs
  1281. * PropertyGrid.cs
  1282. * PropertyManager.cs
  1283. * PropertyTabChangedEventArgs.cs
  1284. * PropertyTabChangedEventHandler.cs
  1285. * PropertyValueChangedEventHandler.cs
  1286. * QueryAccessibilityHelpEventHandler.cs
  1287. * QueryContinueDragEventHandler.cs
  1288. * RadioButton.cs
  1289. * RichTextBox.cs
  1290. * SaveFileDialog.cs
  1291. * Screen.cs
  1292. * ScrollableControl.cs
  1293. * ScrollBar.cs
  1294. * ScrollEventArgs.cs
  1295. * ScrollEventHandler.cs
  1296. * SelectedGridItemChangedEventHandler.cs
  1297. * SelectionRange.cs
  1298. * SelectionRangeConverter.cs
  1299. * SendKeys.cs
  1300. * Splitter.cs
  1301. * SplitterEventHandler.cs
  1302. * StatusBar.cs
  1303. * StatusBarDrawItemEventArgs.cs
  1304. * StatusBarDrawItemEventHandler.cs
  1305. * StatusBarPanel.cs
  1306. * StatusBarPanelClickEventArgs.cs
  1307. * StatusBarPanelClickEventHandler.cs
  1308. * StatusBarPanelCollection.cs
  1309. * SystemInformation.cs
  1310. * TabControl.cs
  1311. * TabPage.cs
  1312. * TextBox.cs
  1313. * TextBoxBase.cs
  1314. * ThreadExceptionDialog.cs
  1315. * Timer.cs
  1316. * ToolBar.cs
  1317. * ToolBarButton.cs
  1318. * ToolBarButtonClickEventHandler.cs
  1319. * ToolTip.cs
  1320. * TrackBar.cs
  1321. * TreeNode.cs
  1322. * TreeNodeCollection.cs
  1323. * TreeNodeConverter.cs
  1324. * TreeView.cs
  1325. * TreeViewCancelEventHandler.cs
  1326. * TreeViewEventHandler.cs
  1327. * TreeViewImageIndexConverter.cs
  1328. * UICuesEventArgs.cs
  1329. * UICuesEventHandler.cs
  1330. * UpDownBase.cs
  1331. * UpDownEventHandler.cs
  1332. * UserControl.cs
  1333. * VScrollBar.cs
  1334. * Fixed errors reported by verify.exe, mostly attribute errors.
  1335. * Added my name to author's list to files I edited in the last two weeks
  1336. 2002-7-22 DennisHayes <[email protected]>
  1337. * DateTimePickerFormat.cs
  1338. * Added values.
  1339. * The NAMESPACE NOW COMPILES under windows in Visual Studio using the Microsoft version of the classes.
  1340. * Verify.exe reports 600 errors.
  1341. 2002-7-21 DennisHayes <[email protected]>
  1342. * AccessibleObject.cs
  1343. * AmbientProperties.cs
  1344. * AxHost.cs
  1345. * BaseCollection.cs
  1346. * BindingsCollection.cs
  1347. * ButtonBase.cs
  1348. * CheckBox.cs
  1349. * CheckedListBox.cs
  1350. * ComboBox.cs
  1351. * ContainerControl.cs
  1352. * ContextMenu.cs
  1353. * Control.cs
  1354. * ControlEventArgs.cs
  1355. * ControlPaint.cs
  1356. * ConvertEventArgs.cs
  1357. * DataGrid.cs
  1358. * DataGridColumnStyle.cs
  1359. * DataObject.cs
  1360. * DateTimePicker.cs
  1361. * DomainUpDown.cs
  1362. * DragEventArgs.cs
  1363. * DrawItemEventArgs.cs
  1364. * ErrorProvider.cs
  1365. * FeatureSupport.cs
  1366. * FileDialog.cs
  1367. * FontDialog.cs
  1368. * Form.cs
  1369. * GiveFeedbackEventArgs.cs
  1370. * GridColumnStylesCollection.cs
  1371. * GridItem.cs
  1372. * GridItemCollection.cs
  1373. * GridTableStylesCollection.cs
  1374. * GroupBox.cs
  1375. * Help.cs
  1376. * HelpEventArgs.cs
  1377. * HelpProvider.cs
  1378. * HScrollBar.cs
  1379. * ImageIndexConverter.cs
  1380. * ImageList.cs
  1381. * ImageListStreamer.cs
  1382. * InputLanguage.cs
  1383. * InputLanguageChangedEventArgs.cs
  1384. * InputLanguageChangingEventArgs.cs
  1385. * InputLanguageCollection.cs
  1386. * InvalidateEventArgs.cs
  1387. * ItemChangedEventArgs.cs
  1388. * ItemCheckEventArgs.cs
  1389. * ItemDragEventArgs.cs
  1390. * KeyEventArgs.cs
  1391. * KeyPressEventArgs.cs
  1392. * KeysConverter.cs
  1393. * Label.cs
  1394. * LabelEditEventArgs.cs
  1395. * LayoutEventArgs.cs
  1396. * LinkArea.cs
  1397. * LinkClickedEventArgs.cs
  1398. * LinkLabel.cs
  1399. * LinkLabelLinkClickedEventArgs.cs
  1400. * LinkLabelLinkClickedEventHandler.cs
  1401. * ListBindingConverter.cs
  1402. * ListBox.cs
  1403. * ListControl.cs
  1404. * ListView.cs
  1405. * ListViewItem.cs
  1406. * ListViewItemConverter.cs
  1407. * MainMenu.cs
  1408. * MeasureItemEventArgs.cs
  1409. * Menu.cs
  1410. * MenuItem.cs
  1411. * Message.cs
  1412. * MessageBox.cs
  1413. * MouseEventArgs.cs
  1414. * NativeWindow.cs
  1415. * NavigateEventArgs.cs
  1416. * NodeLabelEditEventArgs.cs
  1417. * NotifyIcon.cs
  1418. * NumericUpDown.cs
  1419. * OpacityConverter.cs
  1420. * OpenFileDialog.cs
  1421. * OSFeature.cs
  1422. * PageSetupDialog.cs
  1423. * PaintEventArgs.cs
  1424. * Panel.cs
  1425. * PrintControllerWithStatusDialog.cs
  1426. * PrintDialog.cs
  1427. * PrintPreviewDialog.cs
  1428. * QueryAccessibilityHelpEventArgs.cs
  1429. * QueryContinueDragEventArgs.cs
  1430. * RadioButton.cs
  1431. * RichTextBox.cs
  1432. * SaveFileDialog.cs
  1433. * Screen.cs
  1434. * ScrollableControl.cs
  1435. * ScrollBar.cs
  1436. * ScrollEventArgs.cs
  1437. * SelectedGridItemChangedEventArgs.cs
  1438. * SelectionRange.cs
  1439. * SelectionRangeConverter.cs
  1440. * SendKeys.cs
  1441. * Splitter.cs
  1442. * SplitterEventArgs.cs
  1443. * StatusBar.cs
  1444. * StatusBarDrawItemEventArgs.cs
  1445. * StatusBarPanelCollection.cs
  1446. * TabControl.cs
  1447. * TabPage.cs
  1448. * TextBox.cs
  1449. * TextBoxBase.cs
  1450. * ToolBar.cs
  1451. * ToolBarButtonClickEventArgs.cs
  1452. * ToolTip.cs
  1453. * TrackBar.cs
  1454. * TreeNodeCollection.cs
  1455. * TreeView.cs
  1456. * UserControl.cs
  1457. * commented out inherited class that did not need to be stubbed.
  1458. * fixed bugs, added values to one enum. Stubbed interfaces.
  1459. * The NAMESPACE NOW COMPILES under windows in Visual Studio using the Microsoft version of the classes.
  1460. * Verify.exe reports 600 errors.
  1461. 2002-7-7 DennisHayes <[email protected]>
  1462. * ToolBarButtonClickEventArgs.cs
  1463. * UpDownEventArgs.cs
  1464. * KeyPressEventHandler.cs
  1465. * Added new files.
  1466. 2002-7-7 DennisHayes <[email protected]>
  1467. * AccessibleEvents.cs
  1468. * AccessibleNavigation.cs
  1469. * AccessibleObject.cs
  1470. * AccessibleRole.cs
  1471. * AccessibleSelection.cs
  1472. * AccessibleStates.cs
  1473. * AmbientProperties.cs
  1474. * AnchorStyles.cs
  1475. * Appearance.cs
  1476. * Application.cs
  1477. * ApplicationContext.cs
  1478. * ArrangeDirection.cs
  1479. * ArrangeStartingPosition.cs
  1480. * AxHost.cs
  1481. * BaseCollection.cs
  1482. * Binding.cs
  1483. * BindingContext.cs
  1484. * BindingManagerBase.cs
  1485. * BindingMemberInfo.cs
  1486. * BindingsCollection.cs
  1487. * BootMode.cs
  1488. * Border3DSide.cs
  1489. * Border3DStyle.cs
  1490. * BorderStyle.cs
  1491. * BoundsSpecified.cs
  1492. * Button.cs
  1493. * ButtonBase.cs
  1494. * ButtonBorderStyle.cs
  1495. * ButtonState.cs
  1496. * CaptionButton.cs
  1497. * CharacterCasing.cs
  1498. * CheckBox.cs
  1499. * CheckedListBox.cs
  1500. * CheckState.cs
  1501. * Clipboard.cs
  1502. * ColorDepth.cs
  1503. * ColorDialog.cs
  1504. * ColumnClickEventArgs.cs
  1505. * ColumnClickEventHandler.cs
  1506. * ColumnHeader.cs
  1507. * ColumnHeaderStyle.cs
  1508. * ComboBox.cs
  1509. * ComboBoxStyle.cs
  1510. * CommonDialog.cs
  1511. * ComVisible.cs
  1512. * ContainerControl.cs
  1513. * ContentsResizedEventArgs.cs
  1514. * ContentsResizedEventHandler.cs
  1515. * ContextMenu.cs
  1516. * Control.cs
  1517. * ControlBindingsCollection.cs
  1518. * ControlEventArgs.cs
  1519. * ControlEventHandler.cs
  1520. * ControlPaint.cs
  1521. * ControlStyles.cs
  1522. * ConvertEventArgs.cs
  1523. * ConvertEventHandler.cs
  1524. * CreateParams.cs
  1525. * CurrencyManager.cs
  1526. * Cursor.cs
  1527. * CursorConverter.cs
  1528. * Cursors.cs
  1529. * DataFormats.cs
  1530. * DataGrid.cs
  1531. * DataGridBoolColumn.cs
  1532. * DataGridCell.cs
  1533. * DataGridColumnStyle.cs
  1534. * DataGridLineStyle.cs
  1535. * DataGridParentRowsLabelStyle.cs
  1536. * DataGridPreferredColumnWidthTypeConverter.cs
  1537. * DataGridTableStyle.cs
  1538. * DataGridTextBox.cs
  1539. * DataGridTextBoxColumn.cs
  1540. * DataObject.cs
  1541. * DateBoldEventArgs.cs
  1542. * DateRangeEventArgs.cs
  1543. * DateRangeEventHandler.cs
  1544. * DateTimePicker.cs
  1545. * DateTimePickerFormat.cs
  1546. * day.cs
  1547. * DialogResult.cs
  1548. * DockStyle.cs
  1549. * DomainUpDown.cs
  1550. * DragAction.cs
  1551. * DragDropEffects.cs
  1552. * DragEventArgs.cs
  1553. * DragEventHandler.cs
  1554. * DrawItemEventArgs.cs
  1555. * DrawItemEventHandler.cs
  1556. * DrawItemState.cs
  1557. * DrawMode.cs
  1558. * ErrorBlinkStyle.cs
  1559. * ErrorIconAlignment.cs
  1560. * ErrorProvider.cs
  1561. * FeatureSupport.cs
  1562. * FileDialog.cs
  1563. * FlatStyle.cs
  1564. * FontDialog.cs
  1565. * Form.cs
  1566. * FormBorderStyle.cs
  1567. * FormStartPosition.cs
  1568. * FormWindowState.cs
  1569. * FrameStyle.cs
  1570. * Getopt.cs
  1571. * GiveFeedbackEventArgs.cs
  1572. * GiveFeedbackEventHandler.cs
  1573. * GridColumnStylesCollection.cs
  1574. * GridItem.cs
  1575. * GridItemCollection.cs
  1576. * GridItemType.cs
  1577. * GridTableStylesCollection.cs
  1578. * GroupBox.cs
  1579. * Help.cs
  1580. * HelpEventArgs.cs
  1581. * HelpEventHandler.cs
  1582. * HelpNavigator.cs
  1583. * HelpProvider.cs
  1584. * HorizontalAlignment.cs
  1585. * HScrollBar.cs
  1586. * IButtonControl.cs
  1587. * ICommandExecutor.cs
  1588. * IComponentEditorPageSite.cs
  1589. * IContainerControl.cs
  1590. * IDataGridColumnStyleEditingNotificationService.cs
  1591. * IDataGridEditingService.cs
  1592. * IDataObject.cs
  1593. * IFeatureSupport.cs
  1594. * IFileReaderService.cs
  1595. * ImageIndexConverter.cs
  1596. * ImageList.cs
  1597. * ImageListStreamer.cs
  1598. * ImeMode.cs
  1599. * IMessageFilter.cs
  1600. * InputLanguage.cs
  1601. * InputLanguageChangedEventArgs.cs
  1602. * InputLanguageChangedEventHandler.cs
  1603. * InputLanguageChangingEventArgs.cs
  1604. * InputLanguageChangingEventHandler.cs
  1605. * InputLanguageCollection.cs
  1606. * InvalidateEventArgs.cs
  1607. * InvalidateEventHandler.cs
  1608. * ItemActivation.cs
  1609. * ItemBoundsPortion.cs
  1610. * ItemChangedEventArgs.cs
  1611. * ItemChangedEventHandler.cs
  1612. * ItemCheckEventArgs.cs
  1613. * ItemCheckEventHandler.cs
  1614. * ItemDragEventArgs.cs
  1615. * ItemDragEventHandler.cs
  1616. * IWin32Window.cs
  1617. * IWindowTarget.cs
  1618. * KeyEventArgs.cs
  1619. * KeyEventHandler.cs
  1620. * KeyPressEventArgs.cs
  1621. * KeyPressEventHandler.cs
  1622. * Keys.cs
  1623. * KeysConverter.cs
  1624. * Label.cs
  1625. * LabelEditEventArgs.cs
  1626. * LabelEditEventHandler.cs
  1627. * LayoutEventArgs.cs
  1628. * LayoutEventHandler.cs
  1629. * LeftRightAlignment.cs
  1630. * LinkArea.cs
  1631. * LinkBehavior.cs
  1632. * LinkClickedEventArgs.cs
  1633. * LinkClickedEventHandler.cs
  1634. * LinkLabel.cs
  1635. * LinkLabelLinkClickedEventArgs.cs
  1636. * LinkLabelLinkClickedEventHandler.cs
  1637. * LinkState.cs
  1638. * ListBindingConverter.cs
  1639. * ListBox.cs
  1640. * ListControl.cs
  1641. * ListView.cs
  1642. * ListViewAlignment.cs
  1643. * ListViewItem.cs
  1644. * ListViewItemConverter.cs
  1645. * MainMenu.cs
  1646. * MdiLayout.cs
  1647. * MeasureItemEventArgs.cs
  1648. * MeasureItemEventHandler.cs
  1649. * Menu.cs
  1650. * MenuGlyph.cs
  1651. * MenuItem.cs
  1652. * MenuMerge.cs
  1653. * Message.cs
  1654. * MessageBox.cs
  1655. * MessageBoxButtons.cs
  1656. * MessageBoxDefaultButton.cs
  1657. * MessageBoxIcon.cs
  1658. * MessageBoxOptions.cs
  1659. * MethodInvoker.cs
  1660. * MonthCalendar.cs
  1661. * MouseButtons.cs
  1662. * MouseEventArgs.cs
  1663. * MouseEventHandler.cs
  1664. * NativeWindow.cs
  1665. * NavigateEventArgs.cs
  1666. * NavigateEventHandler.cs
  1667. * NodeLabelEditEventArgs.cs
  1668. * NodeLabelEditEventHandler.cs
  1669. * NotifyIcon.cs
  1670. * NumericUpDown.cs
  1671. * OpacityConverter.cs
  1672. * OpenFileDialog.cs
  1673. * Orientation.cs
  1674. * OSFeature.cs
  1675. * PageSetupDialog.cs
  1676. * PaintEventArgs.cs
  1677. * PaintEventHandler.cs
  1678. * Panel.cs
  1679. * PictureBoxSizeMode.cs
  1680. * PrintControllerWithStatusDialog.cs
  1681. * PrintDialog.cs
  1682. * PrintPreviewControl.cs
  1683. * PrintPreviewDialog.cs
  1684. * ProgressBar.cs
  1685. * PropertyGrid.cs
  1686. * PropertyManager.cs
  1687. * PropertySort.cs
  1688. * PropertyTabChangedEventArgs.cs
  1689. * PropertyTabChangedEventHandler.cs
  1690. * PropertyValueChangedEventArgs.cs
  1691. * PropertyValueChangedEventHandler.cs
  1692. * QueryAccessibilityHelpEventArgs.cs
  1693. * QueryAccessibilityHelpEventHandler.cs
  1694. * QueryContinueDragEventArgs.cs
  1695. * QueryContinueDragEventHandler.cs
  1696. * RadioButton.cs
  1697. * RichTextBox.cs
  1698. * RichTextBoxFinds.cs
  1699. * RichTextBoxScrollBars.cs
  1700. * RichTextBoxSelectionAttribute.cs
  1701. * RichTextBoxSelectionTypes.cs
  1702. * RichTextBoxStreamType.cs
  1703. * RichTextBoxWordPunctuations.cs
  1704. * RightToLeft.cs
  1705. * SaveFileDialog.cs
  1706. * Screen.cs
  1707. * ScrollableControl.cs
  1708. * ScrollBar.cs
  1709. * ScrollBars.cs
  1710. * ScrollButton.cs
  1711. * ScrollEventArgs.cs
  1712. * ScrollEventHandler.cs
  1713. * ScrollEventType.cs
  1714. * SecurityIDType.cs
  1715. * SelectedGridItemChangedEventArgs.cs
  1716. * SelectedGridItemChangedEventHandler.cs
  1717. * SelectionMode.cs
  1718. * SelectionRange.cs
  1719. * SelectionRangeConverter.cs
  1720. * SendKeys.cs
  1721. * Shortcut.cs
  1722. * SizeGripStyle.cs
  1723. * SortOrder.cs
  1724. * Splitter.cs
  1725. * SplitterEventArgs.cs
  1726. * SplitterEventHandler.cs
  1727. * StatusBar.cs
  1728. * StatusBarDrawItemEventArgs.cs
  1729. * StatusBarDrawItemEventHandler.cs
  1730. * StatusBarPanel.cs
  1731. * StatusBarPanelAutoSize.cs
  1732. * StatusBarPanelBorderStyle.cs
  1733. * StatusBarPanelClickEventArgs.cs
  1734. * StatusBarPanelClickEventHandler.cs
  1735. * StatusBarPanelCollection.cs
  1736. * StatusBarPanelStyle.cs
  1737. * StructFormat.cs
  1738. * SystemInformation.cs
  1739. * TabAlignment.cs
  1740. * TabAppearance.cs
  1741. * TabControl.cs
  1742. * TabDrawMode.cs
  1743. * TabPage.cs
  1744. * TabSizeMode.cs
  1745. * TextBox.cs
  1746. * TextBoxBase.cs
  1747. * ThreadExceptionDialog.cs
  1748. * TickStyle.cs
  1749. * Timer.cs
  1750. * ToolBar.cs
  1751. * ToolBarAppearance.cs
  1752. * ToolBarButton.cs
  1753. * ToolBarButtonClickEventArgs.cs
  1754. * ToolBarButtonClickEventHandler.cs
  1755. * ToolBarButtonStyle.cs
  1756. * ToolBarTextAlign.cs
  1757. * ToolTip.cs
  1758. * TrackBar.cs
  1759. * TreeNode.cs
  1760. * TreeNodeCollection.cs
  1761. * TreeNodeConverter.cs
  1762. * TreeView.cs
  1763. * TreeViewAction.cs
  1764. * TreeViewCancelEventArgs.cs
  1765. * TreeViewCancelEventHandler.cs
  1766. * TreeViewEventArgs.cs
  1767. * TreeViewEventHandler.cs
  1768. * TreeViewImageIndexConverter.cs
  1769. * UICues.cs
  1770. * UICuesEventArgs.cs
  1771. * UICuesEventHandler.cs
  1772. * UpDownBase.cs
  1773. * UpDownEventArgs.cs
  1774. * UpDownEventHandler.cs
  1775. * UserControl.cs
  1776. * View.cs
  1777. * VScrollBar.cs
  1778. * Monostyled everything!
  1779. 2002-7-7 DennisHayes <[email protected]>
  1780. * AccessibleObject.cs
  1781. * AmbientProperties.cs
  1782. * AxHost.cs
  1783. * BindingsCollection.cs
  1784. * Button.cs
  1785. * ButtonBase.cs
  1786. * ChangeLog
  1787. * CheckBox.cs
  1788. * CheckedListBox.cs
  1789. * ColorDialog.cs
  1790. * ComboBox.cs
  1791. * CommonDialog.cs
  1792. * ContainerControl.cs
  1793. * ContextMenu.cs
  1794. * ControlEventArgs.cs
  1795. * CurrencyManager.cs
  1796. * DataGrid.cs
  1797. * DataGridBoolColumn.cs
  1798. * DataGridColumnStyle.cs
  1799. * DataGridTableStyle.cs
  1800. * DataGridTextBox.cs
  1801. * DataGridTextBoxColumn.cs
  1802. * DateTimePickerFormat.cs
  1803. * ErrorProvider.cs
  1804. * FileDialog.cs
  1805. * FontDialog.cs
  1806. * Form.cs
  1807. * GroupBox.cs
  1808. * HelpProvider.cs
  1809. * HScrollBar.cs
  1810. * ImageList.cs
  1811. * KeyPressEventHandler.cs
  1812. * Label.cs
  1813. * LinkLabel.cs
  1814. * LinkLabelLinkClickedEventArgs.cs
  1815. * ListBox.cs
  1816. * ListControl.cs
  1817. * ListView.cs
  1818. * logfile.txt
  1819. * MainMenu.cs
  1820. * Menu.cs
  1821. * MenuItem.cs
  1822. * MonthCalendar.cs
  1823. * NotifyIcon.cs
  1824. * OpenFileDialog.cs
  1825. * PageSetupDialog.cs
  1826. * Panel.cs
  1827. * PrintDialog.cs
  1828. * PropertyManager.cs
  1829. * RadioButton.cs
  1830. * RichTextBox.cs
  1831. * SaveFileDialog.cs
  1832. * ScrollableControl.cs
  1833. * ScrollBar.cs
  1834. * Splitter.cs
  1835. * StatusBar.cs
  1836. * StatusBarPanel.cs
  1837. * TabControl.cs
  1838. * TabPage.cs
  1839. * TextBox.cs
  1840. * TextBoxBase.cs
  1841. * ThreadExceptionDialog.cs
  1842. * Timer.cs
  1843. * ToolBar.cs
  1844. * ToolBarButton.cs
  1845. * TrackBar.cs
  1846. * TreeView.cs
  1847. * UpDownBase.cs
  1848. * VScrollBar.cs
  1849. * Uncommented stuff, re-commented stuff, adding usings, fixed minor syntax errors.
  1850. 2002-7-6 DennisHayes <[email protected]>
  1851. * DragEventArgs.cs
  1852. * PropertyValueChangedEventArgs.cs
  1853. * InputLanguageChangedEventArgs.cs
  1854. * added files
  1855. 2002-7-6 DennisHayes <[email protected]>
  1856. * ToolBarButtonClickEventArgs.cs
  1857. * UpDownEventArgs.cs
  1858. * PropertyValueChangedEventArgs.c
  1859. * Added new files
  1860. 2002-7-6 DennisHayes <[email protected]>
  1861. * AccessibleObject.cs
  1862. * AmbientProperties.cs
  1863. * Application.cs
  1864. * ApplicationContext.cs
  1865. * AxHost.cs
  1866. * BaseCollection.cs
  1867. * Binding.cs
  1868. * BindingContext.cs
  1869. * BindingManagerBase.cs
  1870. * BindingsCollection.cs
  1871. * CaptionButton.cs
  1872. * Clipboard.cs
  1873. * ColumnHeader.cs
  1874. * Control.cs
  1875. * ControlBindingsCollection.cs
  1876. * ControlPaint.cs
  1877. * CreateParams.cs
  1878. * CurrencyManager.cs
  1879. * Cursor.cs
  1880. * CursorConverter.cs
  1881. * Cursors.cs
  1882. * DataFormats.cs
  1883. * DataGridPreferredColumnWidthTypeConverter.cs
  1884. * DataGridTextBoxColumn.cs
  1885. * DataObject.cs
  1886. * DateBoldEventArgs.cs
  1887. * DateTimePicker.cs
  1888. * DomainUpDown.cs
  1889. * FeatureSupport.cs
  1890. * FontDialog.cs
  1891. * Form.cs
  1892. * GridColumnStylesCollection.cs
  1893. * GridItemCollection.cs
  1894. * GridTableStylesCollection.cs
  1895. * Help.cs
  1896. * IButtonControl.cs
  1897. * IFileReaderService.cs
  1898. * ImageIndexConverter.cs
  1899. * ImageListStreamer.cs
  1900. * IMessageFilter.cs
  1901. * InputLanguage.cs
  1902. * InputLanguageChangeEventArgs.cs
  1903. * InputLanguageCollection.cs
  1904. * ItemChangedEventArgs.cs
  1905. * KeyEventArgs.cs
  1906. * KeyPressEventArgs.cs
  1907. * KeysConverter.cs
  1908. * LinkLabel.cs
  1909. * LinkLabelLinkClickedEventArgs.cs
  1910. * LinkLabelLinkClickedEventHandler.cs
  1911. * ListBindingConverter.cs
  1912. * ListViewItem.cs
  1913. * ListViewItemConverter.cs
  1914. * logfile.txt
  1915. * MessageBox.cs
  1916. * NativeWindow.cs
  1917. * NumericUpDown.cs
  1918. * OpacityConverter.cs
  1919. * OSFeature.cs
  1920. * PaintEventArgs.cs
  1921. * PrintControllerWithStatusDialog.cs
  1922. * PropertyGrid.cs
  1923. * PropertyTabChangedEventArgs.cs
  1924. * PropertyTabChangedEventHandler.cs
  1925. * PropertyValueChangedEventArgs.cs
  1926. * Screen.cs
  1927. * ScrollEventArgs.cs
  1928. * SelectionRange.cs
  1929. * SelectionRangeConverter.cs
  1930. * SendKeys.cs
  1931. * SplitterEventArgs.cs
  1932. * StatusBarPanelClickEventArgs.cs
  1933. * StatusBarPanelCollection.cs
  1934. * SystemInformation.cs
  1935. * ToolBarButtonClickEventArgs.cs
  1936. * ToolTip.cs
  1937. * TreeNode.cs
  1938. * TreeNodeCollection.cs
  1939. * TreeNodeConverter.cs
  1940. * TreeViewCancelEventArgs.cs
  1941. * TreeViewImageIndexConverter.cs
  1942. * UICuesEventArgs.cs
  1943. * UpDownBase.cs
  1944. * UpDownEventArgs.cs
  1945. * UserControl.cs
  1946. * Added usings, corrected minor syntax errors, uncommented some stuff to flush out compile errors.
  1947. 2002-7-3 DennisHayes <[email protected]>
  1948. * AccessibleObject.cs
  1949. * Application.cs
  1950. * AxHost.cs
  1951. * Button.cs
  1952. * Control.cs
  1953. * Form.cs
  1954. * GridColumnStylesCollection.cs
  1955. * GridItemCollection.cs
  1956. * GridTableStylesCollection.cs
  1957. * ImageIndexConverter.cs
  1958. * ImageListStreamer.cs
  1959. * InputLanguageChangingEventArgs.cs
  1960. * KeysConverter.cs
  1961. * Label.cs
  1962. * LinkLabel.cs
  1963. * LinkLabelLinkClickedEventArgs.cs
  1964. * ListBox.cs
  1965. * ListView.cs
  1966. * ListViewItem.cs
  1967. * ListViewItemConverter.cs
  1968. * Menu.cs
  1969. * NumericUpDown.cs
  1970. * ScrollableControl.cs
  1971. * StatusBarDrawItemEventArgs.cs
  1972. * StatusBarPanel.cs
  1973. * StatusBarPanelCollection.cs
  1974. * TabControl.cs
  1975. * TrackBar.cs
  1976. * TreeNodeCollection.cs
  1977. * added usings, minor syntax corrections.
  1978. 2002-7-3 DennisHayes <[email protected]>
  1979. * checked in for Jaak Simm ([email protected])
  1980. * PrintPreviewControl.cs
  1981. * PrintPreviewDialog.cs
  1982. * ProgressBar.cs
  1983. * PropertyGrid.cs
  1984. * PropertyManager.cs
  1985. * PropertyTabChangedEventArgs.cs
  1986. * new files added
  1987. 2002-7-2 DennisHayes <[email protected]>
  1988. * Application.cs
  1989. * ControlEventArgs.cs
  1990. * Form.cs
  1991. * merged changes made by miguel and hestilow in gkt# to system.windows.forms
  1992. 2002-7-2 DennisHayes <[email protected]>
  1993. * Button.cs
  1994. * ButtonBase.cs
  1995. * ContainerControl.cs
  1996. * Label.cs
  1997. * ScrollableControl.cs
  1998. * Copied changes made by miguel and hestilow in gkt# to system.windows.forms
  1999. 2002-7-2 DennisHayes <[email protected]>
  2000. * Checked in for Richard Baumann ([email protected])
  2001. * DataGridTextBoxColumn.cs
  2002. * DataObject.cs
  2003. * DateBoldEventArgs.cs
  2004. * DateRangeEventArgs.cs
  2005. * DateTimePicker.cs
  2006. * DomainUpDown.cs
  2007. * DragEventArgs.cs
  2008. * DrawItemEventArgs.cs
  2009. * added new files
  2010. 2002-7-2 DennisHayes <[email protected]>
  2011. * checked in for Jaak Simm ([email protected])
  2012. * DataFormats.cs
  2013. * DataGrid.cs
  2014. * DataGridBoolColumn.cs
  2015. * DataGridColumnStyle.cs
  2016. * DataGridPreferredColumnWidthTypeConverter.cs
  2017. * DataGridTableStyle.cs
  2018. * DataGridTextBox.cs
  2019. * new classes added
  2020. 2002-7-2 DennisHayes <[email protected]>
  2021. * Checked in for Richard Baumann ([email protected])
  2022. * StatusBar.cs
  2023. * StatusBarDrawItemEventArgs.cs
  2024. * StatusBarPanel.cs
  2025. * StatusBarPanelClickEventArgs.cs
  2026. * SystemInformation.cs
  2027. * Minor changes by Rich B
  2028. 2002-7-1 DennisHayes <[email protected]>
  2029. * AccessibleObject.cs
  2030. * AmbientProperties.cs
  2031. * Application.cs
  2032. * ApplicationContext.cs
  2033. * ArrangeDirection.cs
  2034. * AxHost.cs BaseCollection.cs
  2035. * Binding.cs BindingContext.cs
  2036. * BindingManagerBase.cs
  2037. * BindingMemberInfo.cs
  2038. * BindingsCollection.cs
  2039. * Button.cs
  2040. * ButtonBase.cs
  2041. * CheckBox.cs
  2042. * CheckedListBox.cs
  2043. * Clipboard.cs
  2044. * ColorDialog.cs
  2045. * ColumnClickEventArgs.cs
  2046. * ColumnClickEventHandler.cs
  2047. * ColumnHeader.cs
  2048. * ComboBox.cs
  2049. * CommonDialog.cs
  2050. * ComVisible.cs
  2051. * ContainerControl.cs
  2052. * ContentsResizedEventArgs.cs
  2053. * ContextMenu.cs
  2054. * Control.cs
  2055. * ControlBindingsCollection.cs
  2056. * ControlEventArgs.cs
  2057. * ControlPaint.cs
  2058. * ConvertEventArgs.cs
  2059. * CreateParams.cs
  2060. * CurrencyManager.cs
  2061. * Cursor.cs
  2062. * CursorConverter.cs
  2063. * Cursors.cs
  2064. * ErrorProvider.cs
  2065. * FeatureSupport.cs
  2066. * FileDialog.cs
  2067. * Form.cs
  2068. * GiveFeedbackEventArgs.cs
  2069. * GridColumnStylesCollection.cs
  2070. * GridItem.cs
  2071. * GridItemCollection.cs
  2072. * GridTableStylesCollection.cs
  2073. * GroupBox.cs
  2074. * Help.cs
  2075. * HelpEventArgs.cs
  2076. * HelpProvider.cs
  2077. * HScrollBar.cs
  2078. * ImageIndexConverter.cs
  2079. * ImageList.cs
  2080. * ImageListStreamer.cs
  2081. * InputLanguage.cs
  2082. * InputLanguageChangedEventArgs.cs
  2083. * InputLanguageChangingEventArgs.cs
  2084. * InputLanguageCollection.cs
  2085. * InvalidateEventArgs.cs
  2086. * ItemChangedEventArgs.cs
  2087. * ItemCheckEventArgs.cs
  2088. * ItemDragEventArgs.cs
  2089. * IWin32Window.cs
  2090. * KeyEventArgs.cs
  2091. * KeyPressEventArgs.cs
  2092. * KeysConverter.cs
  2093. * Label.cs
  2094. * LabelEditEventArgs.cs
  2095. * LabelEditEventHandler.cs
  2096. * LayoutEventArgs.cs
  2097. * LinkClickedEventArgs.cs
  2098. * LinkLabel.cs
  2099. * LinkLabelLinkClickedEventArgs.cs
  2100. * ListBindingConverter.cs
  2101. * ListBox.cs
  2102. * ListControl.cs
  2103. * ListView.cs
  2104. * ListViewItem.cs
  2105. * ListViewItemConverter.cs
  2106. * MainMenu.cs
  2107. * MeasureItemEventArgs.cs
  2108. * Menu.cs MenuItem.cs
  2109. * Message.cs
  2110. * MessageBox.cs
  2111. * MonthCalendar.cs
  2112. * MouseEventArgs.cs
  2113. * NativeWindow.cs
  2114. * NavigateEventArgs.cs
  2115. * NodeLabelEditEventArgs.cs
  2116. * NotifyIcon.cs
  2117. * NumericUpDown.cs
  2118. * OpacityConverter.cs
  2119. * OpenFileDialog.cs
  2120. * OSFeature.cs
  2121. * PageSetupDialog.cs
  2122. * PaintEventArgs.cs
  2123. * Panel.cs
  2124. * PrintControllerWithStatusDialog.cs
  2125. * PrintDialog.cs
  2126. * QueryAccessibilityHelpEventArgs.cs
  2127. * QueryContinueDragEventArgs.cs
  2128. * RadioButton.cs
  2129. * RichTextBox.cs
  2130. * SaveFileDialog.cs
  2131. * Screen.cs
  2132. * ScrollableControl.cs
  2133. * ScrollBar.cs
  2134. * ScrollEventArgs.cs
  2135. * SelectedGridItemChangedEventArgs.cs
  2136. * SelectionRange.cs
  2137. * SelectionRangeConverter.cs
  2138. * SendKeys.cs
  2139. * Splitter.cs
  2140. * SplitterEventArgs.cs
  2141. * StatusBar.cs
  2142. * StatusBarDrawItemEventArgs.cs
  2143. * StatusBarPanel.cs
  2144. * StatusBarPanelClickEventArgs.cs
  2145. * StatusBarPanelCollection.cs
  2146. * SystemInformation.cs
  2147. * TabControl.cs
  2148. * TabPage.cs
  2149. * TextBox.cs
  2150. * TextBoxBase.cs
  2151. * ThreadExceptionDialog.cs
  2152. * Timer.cs
  2153. * ToolBar.cs
  2154. * ToolBarButton.cs
  2155. * TrackBar.cs
  2156. * TreeNode.cs
  2157. * TreeNodeCollection.cs
  2158. * TreeNodeConverter.cs
  2159. * TreeView.cs
  2160. * TreeViewCancelEventArgs.cs
  2161. * TreeViewEventArgs.cs
  2162. * TreeViewImageIndexConverter.cs
  2163. * UICuesEventArgs.cs
  2164. * UserControl.cs
  2165. * VScrollBar.cs
  2166. * Implmented some stuff, fixed some stuff, monostyled some stuff, uncommented-out some stuff.
  2167. 2002-7-1 DennisHayes <[email protected]>
  2168. * changelog
  2169. * reversed order, putting most recent entries at the top
  2170. 2002-6-24 DennisHayes <[email protected]>
  2171. * AccessibleStates.cs
  2172. * ArrangeDirection.cs
  2173. * AccessibleEvents.cs
  2174. * Added values for enums
  2175. 2002-6-24 DennisHayes <[email protected]>
  2176. * BindingMemberInfo.cs
  2177. * CaptionButton.cs
  2178. * DataGridCell.cs
  2179. * Message.cs
  2180. * MessageBox.cs
  2181. * Fixed bugs preventing compile
  2182. 2002-6-18 DennisHayes <[email protected]>
  2183. * checked in for Stefan Warnke ([email protected])
  2184. * UICuesEventArgs.cs
  2185. * UpDownBase.cs
  2186. * Better comments and formatting
  2187. 2002-6-18 DennisHayes <[email protected]>
  2188. * Checked in for Jackson Harper ([email protected])
  2189. * ToolBar.cs
  2190. * TabControl.cs
  2191. * TabPage.cs
  2192. * Added sub classes
  2193. 2002-6-5 DennisHayes <[email protected]>
  2194. * TabControl.cs
  2195. * TabPage.cs
  2196. * TextBox.cs
  2197. * TextBoxBase.cs
  2198. * ThreadExceptionDialog.cs
  2199. * Timer.cs
  2200. * added new files for Jackson Harper ([email protected])
  2201. * needs to be mono styled, and may have other issues
  2202. 2002-6-5 DennisHayes <[email protected]>
  2203. * ErrorProvider.cs
  2204. * PrintControllerWithStatusDialog.cs
  2205. * PrintDialog.cs
  2206. * added new files for paul
  2207. 2002-6-5 DennisHayes <[email protected]>
  2208. * StatusBarDrawItemEventArgs.cs
  2209. * StatusBarPanel.cs
  2210. * StatusBarPanelClickEventArgs.cs
  2211. * StatusBarPanelCollection.cs
  2212. * SystemInformation.cs
  2213. * added new files for Richard Baumann ([email protected])
  2214. 2002-6-5 DennisHayes <[email protected]>
  2215. * removed, code moved to main class files, Form.cs, ImageList.cs, LinkLabel.cs,
  2216. * ListBox.cs, ListView.cs, ListViewItem.cs, Menu.cs, MonthCalendar.cs, ScrollableControl.cs
  2217. * Form.ControlCollectison.cs
  2218. * ImageList.ImageCollection.c
  2219. * LinkLabel.LinkCollection.cs
  2220. * ListBox.ObjectCollection.cs
  2221. * ListBox.SelectedIndexCollection.cs
  2222. * ListBox.SelectedObjectCollection.cs
  2223. * ListView.CheckedListViewItemCollection.cs
  2224. * ListView.CheckedIndexCollection.cs
  2225. * ListView.ColumnHeaderCollection.cs
  2226. * ListView.ListViewItemCollection.cs
  2227. * ListView.SelectedIndexCollection.cs
  2228. * ListView.SelectedListViewItemCollection.cs
  2229. * ListViewItem.ListViewSubItem.cs
  2230. * ListViewItem.ListViewSubItemCollection.cs
  2231. * Menu.MenuItemCollection.cs
  2232. * MonthCalendar.HitTestInfo.cs
  2233. * ScrollableControl.DockPaddingEdges.cs
  2234. 2002-6-5 DennisHayes <[email protected]>
  2235. * Checked in for Jackson Harper ([email protected])
  2236. * ToolBar.cs
  2237. * ToolBarButton.cs
  2238. * ToolTip.cs
  2239. * TrackBar.cs
  2240. * TreeNode.cs
  2241. * TreeNodeCollection.cs
  2242. * TreeNodeConverter.cs
  2243. * TreeView.cs
  2244. * TreeViewCancelEventArgs.cs
  2245. * TreeViewEventArgs.cs
  2246. * TreeViewImageIndexConverter.cs
  2247. * Just stubbs
  2248. * New files added, work in progress cleanup and mono style needed.
  2249. 2002-6-5 DennisHayes <[email protected]>
  2250. * checked in for Stefan Warnke ([email protected])
  2251. * UICuesEventArgs.cs
  2252. * UpDownBase.cs
  2253. * Just stubbs
  2254. * New files, work in progress, needs cleanup and mono style
  2255. 2002-5-31 DennisHayes <[email protected]>
  2256. * ItemChangedEventHandler.cs
  2257. * InvalidateEventHandler.cs
  2258. * ItemChangedEventHandler.cs
  2259. * added new files
  2260. 2002-5-31 DennisHayes <[email protected]>
  2261. Check in for Paul Osman <[email protected]>
  2262. * Panel.cs
  2263. * New class, Stubbed and commented out
  2264. 2002-5-31 DennisHayes <[email protected]>
  2265. Check in for Paul Osman <[email protected]>
  2266. * MonthCalendar.cs
  2267. * MonthCalendar.HitTestInfo.cs
  2268. * MouseEventArgs.cs
  2269. * NativeWindow.cs
  2270. * Removed trash byte
  2271. 2002-5-31 DennisHayes <[email protected]>
  2272. * ColumnClickEventArgs.cs
  2273. * Fully implmented.
  2274. 2002-5-31 DennisHayes <[email protected]>
  2275. * Minor formating in lots of files
  2276. 2002-5-27 DennisHayes <[email protected]>
  2277. Added structs. All structs in System.Windows.Forms done
  2278. * BindingMemberInfo.cs
  2279. * DataGridCell.cs
  2280. * LinkArea.cs
  2281. * Message.cs
  2282. * Complete execpt for Message.cs GetLParam
  2283. * and
  2284. * BindingMemberInfo needs constructor.
  2285. * All need verification of hashcodes.
  2286. 2002-5-27 DennisHayes <[email protected]>
  2287. Added delegates. All delegates in System.Windows.Forms done
  2288. * ColumnClickEventHandler.cs
  2289. * ContentsResizedEventHandler.cs
  2290. * ControlEventHandler.cs
  2291. * ConvertEventHandler.cs
  2292. * DateRangeEventHandler.cs
  2293. * DragEventHandler.cs
  2294. * DrawItemEventHandler.cs
  2295. * GiveFeedbackEventHandler.cs
  2296. * HelpEventHandler.cs
  2297. * InputLanguageChangedEventHandler.cs
  2298. * InputLanguageChangingEventHandler.cs
  2299. * InvalidateEventHandler.cs
  2300. * ItemChangedEventHandler.cs
  2301. * ItemCheckEventHandler.cs
  2302. * ItemDragEventHandler.cs
  2303. * KeyEventHandler.cs
  2304. * LabelEditEventHandler.cs
  2305. * LayoutEventHandler.cs
  2306. * LinkClickedEventHandler.cs
  2307. * LinkLabelLinkClickedEventHandler.cs
  2308. 2002-5-27 DennisHayes <[email protected]>
  2309. Check in for Paul Osman <[email protected]>
  2310. * NumericUpDown.cs
  2311. * OpacityConverter.cs
  2312. * OpenFileDialog.cs
  2313. * OSFeature.cs
  2314. * PageSetupDialog.cs
  2315. * PaintEventArgs.cs
  2316. * MonthCalendar.HitTestInfo.cs
  2317. * MouseEventArgs.cs
  2318. * NativeWindow.cs
  2319. * Stubbed and commented out
  2320. * NativeWindow.cs, MonthCalendar.HitTestInfo.cs, MouseEventArgs.cs,
  2321. * have bad extra byte from old skeleton, need new corrected version.
  2322. * MonthCalendar.HitTestInfo.cs needs to be incorporated into MonthCalendar.
  2323. 2002-5-27 DennisHayes <[email protected]>
  2324. Check in for Paul Osman <[email protected]>
  2325. * Menu.cs
  2326. * Menu.MenuItemCollection.cs
  2327. * MenuItem.cs
  2328. * MessageBox.cs
  2329. * MonthCalendar.cs
  2330. * Stubbed and commented out
  2331. * MonthCalendar.cs has bad extra byte from old skeleton, need new corrected version.
  2332. * MonthCalendar.HitTestInfo.cs needs to be incorporated into MonthCalendar.
  2333. * Menu.MenuItemCollection.cs needs to be incorporated into Menu.cs.
  2334. 2002-5-27 DennisHayes <[email protected]>
  2335. Check in for Paul Osman <[email protected]>
  2336. * Panel.cs
  2337. * New class, Stubbed and commented out
  2338. 2002-5-10 Dennis Hayes
  2339. * added IMessageFilter
  2340. * Interfaces complete
  2341. 2002-5-8 Dennis Hayes <[email protected]>
  2342. * RichTextBoxFinds.cs
  2343. * RichTextBoxScrollBars.cs
  2344. * RichTextBoxSelectionAttribute.cs
  2345. * RichTextBoxSelectionTypes.cs
  2346. * RichTextBoxStreamType.cs
  2347. * RichTextBoxWordPunctuations.cs
  2348. * RightToLeft.cs
  2349. * ScrollBars.cs
  2350. * ScrollButton.cs
  2351. * ScrollEventType.cs
  2352. * SecurityIDType.cs
  2353. * SelectionMode.cs
  2354. * Shortcut.cs
  2355. * SizeGripStyle.cs
  2356. * SortOrder.cs
  2357. * StatusBarPanelAutoSize.cs
  2358. * StatusBarPanelBorderStyle.cs
  2359. * StatusBarPanelStyle.cs
  2360. * StructFormat.cs
  2361. * TabAlignment.cs
  2362. * TabAppearance.cs
  2363. * TabDrawMode.cs
  2364. * TabSizeMode.cs
  2365. * TickStyle.cs
  2366. * ToolBarAppearance.cs
  2367. * ToolBarButtonStyle.cs
  2368. * ToolBarTextAlign.cs
  2369. * TreeViewAction.cs
  2370. * UICues.cs
  2371. * View.cs
  2372. * Added enums.
  2373. * All System.Windows.Forms enums complete with correct values.
  2374. 2002-5-8 Dennis Hayes <[email protected]>
  2375. Dennis Hayes <[email protected]>
  2376. Checking in new System.Windows.forms classes (a* to c*) for
  2377. Jaak Simm <[email protected]>
  2378. * AmbientProperties.cs
  2379. * Application.cs
  2380. * ApplicationContext.cs
  2381. * AxHost.cs
  2382. * BaseCollection.cs
  2383. * Binding.cs
  2384. * BindingContext.cs
  2385. * BindingManagerBase.cs
  2386. * BindingsCollection.cs
  2387. * Button.cs
  2388. * ButtonBase.cs
  2389. * CheckBox.cs
  2390. * CheckedListBox.cs
  2391. * Clipboard.cs
  2392. * ColorDialog.cs
  2393. * ColumnClickEventArgs.cs
  2394. * ColumnHeader.cs
  2395. * ComboBox.cs
  2396. * CommonDialog.cs
  2397. * ContainerControl.cs
  2398. * ContentsResizedEventArgs.cs
  2399. * ContextMenu.cs
  2400. * Control.cs
  2401. * ControlBindingsCollection.cs
  2402. * ControlEventArgs.cs
  2403. * ControlPaint.cs
  2404. * ConvertEventArgs.cs
  2405. * CreateParams.cs
  2406. * CurrencyManager.cs
  2407. * Cursor.cs
  2408. * CursorConverter.cs
  2409. * Cursors.cs
  2410. * Classes stubbed and commented out.
  2411. 2002-5-8 Dennis Hayes <[email protected]>
  2412. Dennis Hayes <[email protected]>
  2413. Checking in new System.Windows.forms classe for John Rebbeck <[email protected]>
  2414. * UserControl.cs
  2415. Stubbed and commented out
  2416. 2002-5-8 Dennis Hayes <[email protected]>
  2417. Dennis Hayes <[email protected]>
  2418. Checking in new System.Windows.forms classe for Paul Osman <[email protected]>
  2419. * NavigateEventArgs.cs
  2420. * NodeLabelEditEventArgs.cs
  2421. * NotifyIcon.cs
  2422. Stubbed and commented out
  2423. 2002-05-07 Daniel Carrera ([email protected])
  2424. * Fixed a problem with an "extra byte" problem. It caused an extra '?'
  2425. at the beginning of some lines.
  2426. Classes F-L and Q-R were updated.
  2427. * Added the classes SaveFileDialog.cs and Screen.cs
  2428. 2002-5-7 Dennis Hayes <[email protected]>
  2429. * Added duplicate values
  2430. * System.Windows.Forms.Keys.cs
  2431. 2002-5-7 Dennis Hayes <[email protected]>
  2432. * LeftRightAlignment.cs
  2433. * LinkBehavior.cs
  2434. * LinkState.cs
  2435. * ListViewAlignment.cs
  2436. * MdiLayout.cs
  2437. * MenuGlyph.cs
  2438. * MenuMerge.cs
  2439. * MessageBoxButtons.cs
  2440. * MessageBoxDefaultButton.cs
  2441. * MessageBoxIcon.cs
  2442. * MessageBoxOptions.cs
  2443. * MouseButtons.cs
  2444. * Orientation.cs
  2445. * PictureBoxSizeMode.cs
  2446. * PropertySort.cs
  2447. * Added some more enums. All have correct values.
  2448. * 5-5-2002 Dennis Hayes <[email protected]>
  2449. * Added enums
  2450. * GridItemType.cs
  2451. * HelpNavigator.cs
  2452. * HorizontalAlignment.cs
  2453. * ImeMode.cs
  2454. * ItemActivation.cs
  2455. * ItemBoundsPortion.cs
  2456. * Keys.cs
  2457. * All correct execpt for Keys.cs which is missing a half dozen
  2458. * duplicate entries that need correcting.
  2459. 2002-05-02 Daniel Carrera ([email protected])
  2460. * small update to classes [F-H]*
  2461. * added stubbed and commented out classes for [I-L]*
  2462. * added stubbed and commented out classes for R*
  2463. 2002-4-23 Dennis Hayes <[email protected]>
  2464. * AccessibleNavigation.cs :added to cvs with bad enum values, I will correct.
  2465. * AccessibleSelection.cs :added with good enum values.
  2466. * ContentsResizedEventHandler.cs :Added delagate
  2467. * MainMenu.cs
  2468. * AccessibleObject.cs
  2469. * MeasureItemEventArgs :added stubbed classes. Commented out.
  2470. * IButtonControl.cs : Added interface.
  2471. 2002-4-23 Dennis Hayes <[email protected]>
  2472. * added stubbed and commented out classes from F to G *
  2473. 2002-04-10 Duncan Mak <[email protected]>
  2474. * CaptionButton.cs:
  2475. * CharacterCasing.cs:
  2476. * CheckState.cs:
  2477. * DataGridParentRowsLabelStyle.cs:
  2478. * DialogResult.cs:
  2479. * DockStyle.cs:
  2480. * DragAction.cs:
  2481. * DragDropEffects.cs:
  2482. * DrawItemState.cs:
  2483. * DrawMode.cs:
  2484. * ErrorBlinkStyle.cs:
  2485. * ErrorIconAlignment.cs:
  2486. * FlatStyle.cs:
  2487. * FormBorderStyle.cs:
  2488. * FormStartPosition.cs:
  2489. * FormWindowState.cs:
  2490. * FrameStyle.cs: Fixed enum layouts with EnumCheck.