| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781 |
- 2003-08-22 Alexandre Pigolkine <[email protected]>
- * ComboBox.cs
- * Control.cs modofications for ComboBox sample
- 2003-08-22 Duncan Mak <[email protected]>
- * ListControl.cs (DataSource): Implementation by Brian Takita
- <[email protected]>.
- 2003-08-12 Aleksey Ryabchuk <[email protected]>
- * MenuItem.cs : added missing properties, so menu sample app can be compiled
- 2003-08-11 Aleksey Ryabchuk <[email protected]>
- * Control.cs : MouseButtons, PointToClient, PointToScreen were implemented.
- removed unnecessary check from UpdateBounds
- * Panel.cs : ability to change BorderStyle at runtime
- 2003-08-11 Aleksey Ryabchuk <[email protected]>
- * TreeView.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * win32functions.cs : more implementation added
- * button.cs : fix method signature
- 2003-08-08 Dennis Hayes <[email protected]>
- * Control.cs
- * MonthCalander.cs
- * Signiture corections.
- * implmentation stuff changed to internal
- * event "e" params names changed to "pevent" type names
- 2003-08-03 Alexandre Pigolkine <[email protected]>
- * CheckBox.cs 12x12 checkmark dimensions for a moment
- * ControlPaint.cs DrawRadioButton implemented
- * RadioButton.cs painting is in OnPaint
- 2003-08-02 Alexandre Pigolkine <[email protected]>
- * CheckBox.cs painting in OnPaint implemented
- * CheckedListBox.cs changes to painting code
- * Button.cs code cleanup
- * Control.cs call to subclassed control can be controlled by mask
- * Message.cs helper properties
- * win32Enums.cs new values
- 2003-08-01 Alexandre Pigolkine <[email protected]>
- * ControlPaint.cs DrawStringDisabled changed
- * Label.cs painting moved inside OnPaint function
- * Button.cs disposing Graphics in OnPaint
- * win32functions.cs StringFormat2DrawTextFormat added
- 2003-07-31 Aleksey Ryabchuk <[email protected]>
- * TreeView.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * win32enums.cs
- * win32functions.cs : more implementation added
- 2003-07-31 Alexandre Pigolkine <[email protected]>
- * Control.cs : do not keep oldBounds if LAYOUT_SUSPENDED is true,
- call OnMouseDown/Up functions
- * Button.cs
- * ButtonBase.cs painting moved inside OnPaint function
- * NativeWindow.cs (commented) debug output added
- 2003-07-31 Aleksey Ryabchuk <[email protected]>
- * Control.cs : anchoring algorithm was fixed to avoid inaccuracies caused by rounding
- * TextBoxBase.cs : set FixedHeight style for single line edit boxes
- 2003-07-30 Aleksey Ryabchuk <[email protected]>
- * TextBox.cs : ScrollBars, AcceptsReturn, CharacterCasing properties were implemented
- 2003-07-29 Aleksey Ryabchuk <[email protected]>
- * TextBoxBase.cs
- * TextBox.cs
- * Control.cs : BackColor, ForeColor, PasswordChar for edit boxes
- 2003-07-28 Miguel de Icaza <[email protected]>
- * NativeWindow.cs: Remove debugigng messages.
- * Control.cs: Remove debugging messages.
- * Label.cs: Use the border style.
- * win32functions.cs: Set the default to WineLib now on Linux.
- 2003-07-23 Miguel de Icaza <[email protected]>
- * win32functions.cs: Move functions that do not exist in WineLib
- over to Win32_Wineless, so we do not trigger the warning messages
- until a function tries to use them.
- Win32() constructor: Set a hint on the appdomain that we would
- prefer to have the System.Drawing API use the Win32 implementation
- of the API.
-
- * *.cs: Updated sources to use this.
- 2003-07-16 Aleksey Ryabchuk <[email protected]>
- * ColorDialog.cs : implemented
- * win32functions.cs
- * win32enums.cs
- * win32structs.cs : functions, flags and structs for ColorDialog
- 2003-07-01 Alexandre Pigolkine <[email protected]>
- * win32Structs.cs some fields cannot be marshaled
- OFNOTIFY structure simplified
- * FileDialog.cs
- * win32functions.cs
- call wine_get_unix_filename from FileOpen dialog
-
- * win32functions.cs WineLib library name changed
-
- * NativeWindow.cs CLIENTCREATESTRUCT parameter for MDI
- Aleksey Ryabchuk <[email protected]>
- 2003-06-30 Aleksey Ryabchuk <[email protected]>
- * Form.cs : TopLevel, AcceptButton, CancelButton
- * Application.cs : allow keyboard messages in modal forms
- * Control.cs : basic impl. of GetTopLevel, SetTopLevel
- 2003-06-30 Aleksey Ryabchuk <[email protected]>
- * Cursors.cs : VSplit, HSplit cursors
- * Form.cs: WindowState ( not finished ), changes to Form.Close
- * Splitter.cs, Toolbar.cs : started implementation
- 2003-06-26 Aleksey Ryabchuk <[email protected]>
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeView.cs : more implementation added
- 2003-06-24 Aleksey Ryabchuk <[email protected]>
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeView.cs : more implementation added
- 2003-06-12 Aleksey Ryabchuk <[email protected]>
- * Menu.cs
- * ContextMenu.cs : create context menu using CreatePopupMenu function
- 2003-06-12 Aleksey Ryabchuk <[email protected]>
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeView.cs
- * win32functions.cs : started impl. of TreeView control
- 2003-06-12 Aleksey Ryabchuk <[email protected]>
- * Control.cs : don't do anything if Anchor is set to default value
- * SystemInformation.cs : return some system metrics
- * UserControl.cs : default size impl.
- 2003-06-11 Aleksey Ryabchuk <[email protected]>
- * ContextMenu.cs : SourceControl, Show method
- * Control.cs : ContextMenu, CanSelect, force parent to perform layout when Dock property changes
- * GroupBox.cs
- * Label.cs
- * Panel.cs
- * PictureBox.cs
- * Splitter.cs
- * ProgressBar.cs : remove Selectable style
- * RadioButton.cs : set TextAlign to MiddleLeft by default
- * tooltip.cs : override Dispose method
- * win32Enums.cs
- * win32functions.cs : flags and function for context menu
- 2003-06-09 Aleksey Ryabchuk <[email protected]>
- * Conrols.cs : Disposing property, Dispose method
- * Cursor.cs : Show, Hide, Copy cursor
- * NativeWindow.cs : destructor
- 2003-06-09 Aleksey Ryabchuk <[email protected]>
- * Control.cs : Cursor property, handle WM_SETCURSOR
- * Cursor.cs : started implementation
- * Cursors.cs : load system cursor types
- * win32functions.cs : DestroyCursor function
- 2003-06-09 Aleksey Ryabchuk <[email protected]>
- * HScrollBar.cs
- * ScrollBar.cs
- * VScrollBar.cs : implemented
- * ScrollEventArgs.cs: typo fix
- 2003-06-09 Aleksey Ryabchuk <[email protected]>
- * AxHost.cs
- * MonthCalendar.cs : fixed issues breaking the build
- 2003-06-09 Dennis Hayes <[email protected]>
- for Gopal V <[email protected]>
- * MonthCalendar.cs
- * AxHost.cs
- Fixed overrides
- 2003-06-07 Alexandre Pigolkine <[email protected]>
- * Control.cs
- * Form.cs
- * ScrollableControl.cs
- DockStyle.None & AnchorStyles
- 2003-06-06 Aleksey Ryabchuk <[email protected]>
- * HScrollBar.cs
- * ScrollBar.cs
- * VScrollBar.cs
- * win32Enums.cs : started implementation of scrollbar classes
- 2003-06-06 Aleksey Ryabchuk <[email protected]>
- * Form.cs : MaximumSize, MinimumSize, TopMost were implemented, small fixes and improvements
- * win32Structs.cs: WINDOWPOS structure
- 2003-06-05 Aleksey Ryabchuk <[email protected]>
- * Form.cs : ControlBox, HelpButton, MaximizeBox, MinimizeBox, maximumSize
- * win32Structs.cs: MINMAXINFO structure
- 2003-06-04 Aleksey Ryabchuk <[email protected]>
- * Control.cs
- * Form.cs : KeyPreview, ShowInTaskBar
- 2003-06-02 Alexandre Pigolkine <[email protected]>
- * Application.cs
- * ComboBox.cs
- * Control.cs
- change to ContainsFocus/Focused properties
-
- 2003-04-25 Miguel de Icaza <[email protected]>
- * SystemInformation.cs (ComputerName): Bug fix: we need to trim down the size
- 2003-05-30 Aleksey Ryabchuk <[email protected]>
- * GroupBox.cs : take BackColor into account
- 2003-05-27 Aleksey Ryabchuk <[email protected]>
- * Control.cs : helper method getParentForm
- * Form.cs : ActiveForm , FormBorderStyle implemented
- * GroupBox.cs : some chages in drawing code, don't register another window class
- * FormBorderStyle.cs : fixed typo
- * win32functions.cs : UpdateWindowExStyle added, new prototypes for GetActiveWindow, GetForegroundWindow
- 2003-05-27 Aleksey Ryabchuk <[email protected]>
- * Button.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * ComboBox.cs
- * HScrollBar.cs
- * ListBox.cs
- * ListView.cs
- * PrintPreviewControl.cs
- * RichTextBox.cs
- * ScrollBar.cs
- * Splitter.cs
- * ToolBar.cs
- * TreeView.cs
- * VScrollBar.cs : changed to use base implementation of CreateParams
- 2003-05-27 Aleksey Ryabchuk <[email protected]>
- * Control.cs : implemented GetChildIndex, BringToFront, UpdateZOrder, update z-order when recreating handle,
- * win32Strcuts.cs
- * win32Enums.cs : use ansi CharSet for tooltips
-
- 2003-05-27 Aleksey Ryabchuk <[email protected]>
- * Contols.cs : changes to SetVisibleCore, Invalidate (bool) is implemented
- * NativeWindow.cs : don't use CS_VREDRAW and CS_HREDRAW flags
- * ImageList.cs
- * ImageListStreamer.cs : small fixes
- * TabControl.cs
- * TabPage.cs : image list support was added
- 2003-05-26 Aleksey Ryabchuk <[email protected]>
- * ImageListStreamer.cs: added deserialization code
- * win32functions.cs : added some prototypes required for ImageList impl.
- * win32strcuts.cs : added new structs, switched to CharSet.Ansi for TCITEM struct
- * win32Enums.cs : use ansi messages for tab control
- 2003-05-20 Aleksey Ryabchuk <[email protected]>
- * win32functions.cs
- * NativeWindow.cs : fixed some issues causing problems when running SWF on Linux
- 2003-05-20 Aleksey Ryabchuk <[email protected]>
- * FileDialog.cs : more implementation added
- * win32Enums.cs : added some error codes for common dialogs
- * win32functions.cs : added prototype for CommDlgExtendedError
- 2003-05-19 Aleksey Ryabchuk <[email protected]>
- * CommonDialog.cs
- * FileDialog.cs
- * OpenFileDialog.cs
- * win32Enums.cs
- * win32Structs.cs : more implementation added
- 2003-05-16 Aleksey Ryabchuk <[email protected]>
- * CommonDialog.cs
- * FileDialog.cs
- * win32Enums.cs
- * win32functions.cs : started impl. of OpenFile dialog
- 2003-05-16 Aleksey Ryabchuk <[email protected]>
- * DomainUpDown.cs : changes to OnTextBoxKeyDown
- * UpDownBase.cs : added impl. to BackColor and BackgroundImage
- 2003-05-12 Aleksey Ryabchuk <[email protected]>
- * Control.cs : ResizeRedraw, removed some unused code
- * DomainUpDown.cs :
- * UpDownBase.cs : some improvements
- 2003-05-12 Aleksey Ryabchuk <[email protected]>
- * Application.cs
- * ContainerControl.cs
- * Control.cs
- * Form.cs
- * ScrollableControl.cs
- * StatusBar.cs
- * TabControl.cs
- * TabPage.cs : changes in the code for TAB key handling
- 2003-05-09 Aleksey Ryabchuk <[email protected]>
- * Control.cs
- * Form.cs
- * GroupBox.cs
- * Label.cs
- * UpDownBase.cs : some new stuff related to focus movement by the TAB key
- 2003-05-08 Aleksey Ryabchuk <[email protected]>
- * Control.cs : started implementation of keyboard handling
- * CroupBox.cs : set UserPaint style
- * TextBoxBase.cs : set subclass flag to allow catching of keyboard events
- 2003-05-07 Aleksey Ryabchuk <[email protected]>
- * Control.cs : static RegisterDefaultWindowClass method was added
- * ScrollableControl.cs : registration of "mono_scrollable_control" was moved to Control class
- * win32functions.cs : new constant DEFAULT_WINDOW_CLASS
- * PictureBox.cs : implemented
- 2003-05-07 Aleksey Ryabchuk <[email protected]>
- * Control.cs : use WS_OVERLAPPED instead of WS_OVERLAPPEDWINDOW, update text field in get Text property
- * TextBox.cs : use styles provided by TextBoxBase
- * TextBoxBase.cs : more methods and properties were implemented
- * win32enums.cs : messages and notifications for EDIT control
- 2003-05-02 Aleksey Ryabchuk <[email protected]>
- * Control.cs : call OnTextChange
- * UpdownBase.cs
- * DomainUpDown.cs : some more implementation
- * TextBox.cs : TextAlign, use base.CreateParams
- * TextBoxBase.cs : use base.CreateParams
- * Win32enums.cs : styles for edit box
- 2003-04-30 Aleksey Ryabchuk <[email protected]>
- * TabControl.cs
- * TabPage.cs : prevent pages from being added to the TabControl multiple times
- 2003-04-30 Aleksey Ryabchuk <[email protected]>
- * Control.cs : some fixes, added call to OnControlAdded, update visibility flag in Show and Hide
- * GroupBox.cs
- * Label.cs
- * ButtoBase.cs : use base.CreateParams
- * PictureBox.cs : call base.OnResize
- * RadioButton.cs : implemented
- * TabControl.cs
- * TabPage.cs : some fixes
- 2003-04-29 Aleksey Ryabchuk <[email protected]>
- * Control.cs : call OnResize from OnSizeChanged
- * TabControl.cs : small fixes
- * Win32enums.cs : constants for ToolTip notifications
- 2003-04-28 Alexandre Pigolkine <[email protected]>
- * monogc.c
- * makefile small improvements
- 2003-04-26 Alexandre Pigolkine <[email protected]>
- * monogc.c GC stubs for Mini
- * win32functions.cs EntryPoint added for some functions
- 2003-04-25 Miguel de Icaza <[email protected]>
- * SystemInformation.cs (ComputerName): Implement this.
- 2003-04-25 Aleksey Ryabchuk <[email protected]>
- * Control.cs : check if control is already in control collection, Created property,
- ControlCollection.RemoveAt reimplemented using ControlCollection.Remove
- * TabControl.cs
- * TabPage.cs : some more implementation
- * win32structs.cs: TCITEMHEADER replaced with TCITEM
- 2003-04-24 Aleksey Ryabchuk <[email protected]>
- * Control.cs: change to CreateControlInstance function
- * Panel.cs: use base CreateParams
- * TabControl.cs
- * TabPage : started implementing
- * win32Enums.cs
- * win32Structs.cs
- * win32functions.cs : messages, styles for TabControl
- 2003-04-24 Alexandre Pigolkine <[email protected]>
- * Button.cs paint with Back/Fore colors
- * ComboBox.cs fix to notification handler
- * ContainerControl.cs
- * ControlStyles.cs
- * ListBox.cs
- * Panel.cs changes for ControlStyles
- * Control.cs ControlStyles, BackColor, painting logic
-
- * DrawItemEventArgs.cs temporary fix to avoid crach in jit
-
- 2003-04-23 Aleksey Ryabchuk <[email protected]>
- * Application.cs : new internal functions enterModalLoop, exitModalLoop
- * Button.cs : changes in DialogResult and OnClick
- * Control.cs : new internal getOwnerWindow method, recreate child windows in RecreateHandle as well
- * form.cs : implementation of modal forms
- * win32enums.cs : constants for GetWindow function
- * win32functions.cs : GetWindow , IsDialogMessage added
- 2003-04-22 Aleksey Ryabchuk <[email protected]>
- * Control.cs : implementation of docking
- * Form.cs : small changes regarding resizing of MDI client window
- * StatusBar.cs : update parts on Layout event, new style to prevent resizing by the system
- 2003-04-17 Aleksey Ryabchuk <[email protected]>
- * Control.cs : implementation of scale functions, bug-fix in ControlCollection.Add
- * Form.cs : implementation of ScaleCore method
- 2003-04-17 Aleksey Ryabchuk <[email protected]>
- * ImageList.cs
- * ImageListStreamer.cs : started to implement
- * Control.cs : changes in implementation of size-related functions
- * Form.cs : small modifications to reflect changes in Contol class
- 2003-04-15 Aleksey Ryabchuk <[email protected]>
- * NativeWindow.cs : don't assign window ID when it was already assigned by the system
- 2003-04-11 Aleksey Ryabchuk <[email protected]>
- * Control.cs : some new functions implemented, using BitVector32
- instead of declaring separate boolean varibales for every control status
-
- 2003-04-11 Aleksey Ryabchuk <[email protected]>
- * Control.cs
- * Form.cs
- * MainMenu.cs
- * Menu.cs
- * MenuItem.cs
- * NativeWindow.cs
- * win32functions.cs : some changes related to implementation of MDI interface
- 2003-04-11 Aleksey Ryabchuk <[email protected]>
- * Control.cs : init bounds in ctor, invisible parking window
- * TrackBar.cs
- * ProgressBar.cs.cs
- * DateTimePicker.cs
- * StatusBar.cs : use base version of CreateParams
- * ScrollableControl.cs : use base version of CreateParams, removed CS_VREDRAW, CS_HREDRAW styles
- * Form.cs : reset parent back to zero for the main form
- * StatusBarPanel.cs : small bug-fix
- 2003-04-6 DennisHayes <[email protected]>
- * Converted to Unix newlines
- * Changed copyright from 2002 to 2002/3
- 2003-04-6 DennisHayes <[email protected]>
- * CheckOutList Update, removed everyone from list, active developers need to readd.
- * Binding.cs Marked some funmctions for Compact frame work
- * RadioButton.cs //removed inherited members
- * RichTextBox.cs //removed inherited members
- * Splitter.cs //removed a throw not implmented so some samples could run.
-
- 2003-04-06 Alexandre Pigolkine <[email protected]>
- * Control.cs
- * Form.cs
- * NativeWindow.cs
- * Win32functions.cs
- * Win32structs.cs : initial implementation of MDI interface.
- Aleksey Ryabchuk <[email protected]>
- * Button.cs
- * CheckedListBox.cs
- * Control.cs
- * GroupBox.cs
- * ListBox.cs
- * ScrollableControl.cs
- Attempt to minimize fliker effect
- Alexandre Pigolkine
- 2003-03-30 Alexandre Pigolkine <[email protected]>
- * DateTimePicker.cs
- * StatusBar.cs
- * tooltip.cs
- Fixed AllocCoTaskMem issure. Bug-fix for DTP.
- Aleksey Ryabchuk <[email protected]>
- 2003-03-29 Alan Tam <[email protected]>
- * DataGrid.cs
- stubbed a missing method
- 2003-03-26 Alexandre Pigolkine <[email protected]>
- * NumericUpDown.cs
- * ScrollableControl.cs
- * UpDownBase.cs
- * win32Structs.cs
- implementation of NumericUpDown
- * tooltip.cs
- * win32Enums.cs
- * win32functions.cs
- implementation of ToolTip control class.
- Aleksey Ryabchuk <[email protected]>
- 2003-03-25 Alexandre Pigolkine <[email protected]>
- * CheckedListBox.cs
- * ListBox.cs
- Implementation of Collections
- Alexandre Pigolkine <[email protected]>
- * Control.cs
- * DateTimePicker.cs
- * win32Enums.cs
- notification handling for DateTimePicker control.
- * StatusBar.cs
- * TrackBar.cs
- small modifications.
- Aleksey Ryabchuk <[email protected]>
- 2003-03-23 Alexandre Pigolkine <[email protected]>
- * DateTimePicker.cs
- * Form.cs
- * ProgressBar.cs
- * win32Enums.cs
- * win32Structs.cs
- Implementation of ProgressBar and DateTimePicker controls by
- Aleksey Ryabchuk <[email protected]>
- * Control.cs small fix to handle scroll bar messages
- 2003-03-20 Alexandre Pigolkine <[email protected]
- * Control.cs
- * Form.cs
- * GroupBox.cs
- * Label.cs
- * Panel.cs
- * TrackBar.cs
- * win32functions.cs
- checkin for Aleksey Ryabchuk <[email protected]>
- implementation of Timer class and small modifications to other files
- 2003-03-18 Alexandre Pigolkine <[email protected]>
- * monowinehooks.c
- * runwine
- attempt to use LD_PRELOAD to override stubs in Wine
- * monosem.c implementation of pthread_cond*
- * makefile
- * monogc.c
- * monostub.c
- small changes to files
- 2003-03-17 Alexandre Pigolkine <[email protected]>
- * monogc.c
- * makefile
- original version of monogc.c by John Sohn <[email protected]>
- 2003-03-15 Alexandre Pigolkine <[email protected]>
- * Control.cs
- * Panel.cs
- * StatusBar.cs
- * StatusBarPanel.cs
- * win32Enums.cs
- * win32functions.cs
- checkin for Aleksey Ryabchuk ([email protected])
- 2003-03-15 Alexandre Pigolkine <[email protected]>
- * monogc.c dynamic loader for gc-wine.dll by John Sohn <[email protected]>
- * makefile changed to build monogc
- 2003-03-10 Alexandre Pigolkine <[email protected]>
- * Button.cs
- check in for Steven Stewart <[email protected]>
- 2003-03-09 Alexandre Pigolkine <[email protected]>
- * Application.cs fixed line terminators
- * Form.cs
- * TrackBar.cs
- * win32Enums.cs
- implementation of TrackBar control by Aleksey Ryabchuk ([email protected])
- * makefile
- * monostub.c
- * monosem.c
- parse command line
- run assembly not from main thread
- first implementation of pthread fuctions using Wine
- 2003-03-01 Alexandre Pigolkine <[email protected]>
- * Button.cs changed painting code
- * ButtonBase.cs ContentAlignment operations implemented in separate functions
- * CheckedListBox.cs Implementation added
- * ComboBox.cs small modifications
- * Control.cs repaint on style changes
- * ControlPaint.cs Implementation added
- * Form.cs delegate Size to Control
- * ImageList.cs small modifications
- * ListBox.cs Implementation added
- * ListControl.cs small modifications
- * NativeWindow.cs fixed line terminators
- * ScrollableControl.cs small modifications
- * win32Enums.cs declaration added
- * win32functions.cs Implementation added, fixed line terminators
- 2003-02-27 Reggie Burnett <[email protected]>
- * Added several external functions to Win32funcs.cs
- * Added necessary LoadLibrary to RichTextEdit to load common control library
-
- 2003-02-26 Reggie Burnett <[email protected]>
- * Form.Close now actually destroys the Window
- * Application now closes when launching form is closed
- 2003-02-19 Alexandre Pigolkine <[email protected]>
- * Button.cs
- * CheckedListBox.cs
- * ComboBox.cs
- * Control.cs
- * ControlPaint.cs
- * Form.cs
- * ListBox.cs
- * win32functions.cs
- implementation added
-
- 2003-02-11 Alexandre Pigolkine <[email protected]>
- * ButtonBase.cs
- * ComboBox.cs
- * Control.cs
- * ListControl.cs
- * NativeWindow.cs
- implementation added
- The following sample from .Net SDK can run:
- Samples\QuickStart\winforms\samples\controlreference\comboboxctl\cs\
- 2003-02-09 Alexandre Pigolkine <[email protected]>
- * Button.cs
- * ButtonBase.cs
- * CheckBox.cs
- * ComboBox.cs
- * Control.cs
- * ControlPaint.cs
- implementation added
- * Message.cs
- bug fixed
- * win32Enums.cs
- * win32functions.cs
- * win32Structs.cs
- declarations added
- 2003-02-07 Alexandre Pigolkine <[email protected]>
- * Font.cs removed
- * Button.cs
- * ControlPaint.cs
- * ComboBox.cs
- modified
- 2003-02-06 Alexandre Pigolkine <[email protected]>
- * Button.cs Painting code is implemented
- * ButtonBase.cs TextAlign property implemented, WM_COMMAND handling is modified
- * ComboBox.cs Initial implementation of ObjectCollection, properties and WM_COMMAND
- * Control.cs Changes to WindProc of Control and ControlNativeWindow classes,
- to some properties, window handle creation, ControlCollection
- Initial implementation windows control subclassing, message reflection,
- ISynchrinizeInvoke interface.
- * ControlPaint.cs Initial implementation of DrawBorder3D and DrawButton
- * Form.cs Modification to constructor, window handle creation,
- WM_COMMAND handling, WndProc
- * ListBox.cs Implementation of DrawMode.OwnerDrawFixed and OwnerDrawVariable
- * Message.cs WParam helpers added
- * MessageBox.cs By default MessageBox.Show(string) brings TASKMODAL message box
- * NativeWindow.cs Implemented OnThreadException
- * PaintEventArgs.cs Dispose() method
- * ProgressBar.cs Small modifications to implementation
- * SystemInformation.cs CaptionHeight implemented
- * CheckBox.cs
- * GroupBox.cs
- * Label.cs
- * Panel.cs
- * TextBox.cs
- CreateParams property modified
- * win32enums.cs enums added
- * win32functions.cs functions added
- * win32struct.cs 2 structs modified
- * Application.cs
- * DrawItemEventArgs.cs
- line terminators fixed
- The following samples from .Net SDK can run:
- Samples\QuickStart\howto\samples\winforms\errorhandler\cs\
- Samples\QuickStart\howto\samples\winforms\ownerdrawlistbox\cs\
- Samples\QuickStart\howto\samples\winforms\threadmarshal\cs\
- Samples\QuickStart\winforms\samples\accessible\cs\
- Samples\QuickStart\winforms\samples\controlreference\buttonctl\cs\
- 2003-31-1 John Sohn <[email protected]>
- * makefile: cleaned and reduced dependencies to hard-coded paths
- * monostub.c: updated for compliance with the latest Mono and WineLib
- 2002-12-9 DennisHayes <[email protected]>
- * Form.cs
- * KeysConverter.cs
- * Label.cs
- * LinkArea.cs
- * LinkLabel.cs
- * ListBindingConverter.cs
- * ListBox.cs
- * ListControl.cs
- * ListView.cs
- * ListViewItem.cs
- * ListViewItemConverter.cs
- * MainMenu.cs
- * Menu.cs
- * MenuItem.cs
- * NativeWindow.cs
- * NumericUpDown.cs
- * OpacityConverter.cs
- * OSFeature.cs
- * PictureBox.cs
- * PrintControllerWithStatusDialog.cs
- * PrintDialog.cs
- * PrintPreviewControl.cs
- * PropertyManager.cs
- * RadioButton.cs
- * Screen.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * SendKeys.cs
- * SplitterEventArgs.cs
- * StatusBar.cs
- * SystemInformation.cs
- * TextBoxBase.cs
- * ToolBar.cs
- * TrackBar.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeNodeConverter.cs
- * TreeView.cs
- * cleanup, fixes, some implmentation
- 2002-12-6 DennisHayes <[email protected]>
- * checkin for Alexandre Pigolkine ([email protected])
- * Form.cs
- * Menu.cs
- * MenuItem.cs
-
- * Implmentation
- 2002-12-6 DennisHayes <[email protected]>
- * Control.cs
- * Form.cs
- * MonthCalendar.cs
- * Screen.cs
- * SelectionRange.cs
- * SelectionRangeConverter.cs
- * TabPage.cs
- * TextBox.cs
- * Timer.cs
- * ToolBarButton.cs
- * TrackBar.cs
- * UpDownBase.cs
- * UserControl.cs
- * tooltip.cs
- * cleanup, dead code removeal, replaced throw not implmented's with //FIXME:s
- 2002-12-3 DennisHayes <[email protected]>
- * *.cs
- * switched to unix style line terminiators
- 2002-12-3 DennisHayes <[email protected]>
- * 140 files changed. replaced throw notimplmenteds with FIXME:s, removed dead code,
- * corrected
- 2002-12-1 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * Application.cs
- * ApplicationContext.cs
- * AxHost.cs
- * Binding.cs
- * BindingContext.cs
- * Button.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * Clipboard.cs
- * ColorDialog.cs
- * ColumnHeader.cs
- * ComboBox.cs
- * CommonDialog.cs
- * ContainerControl.cs
- * ContextMenu.cs
- * Control.cs
- * ControlBindingsCollection.cs
- * ControlPaint.cs
- * CreateParams.cs
- * CurrencyManager.cs
- * Cursor.cs
- * CursorConverter.cs
- * Cursors.cs
- * DataFormats.cs
- * DataGrid.cs
- * DataGridTableStyle.cs
- * DataGridTextBox.cs
- * DataGridTextBoxColumn.cs
- * DataObject.cs
- * ErrorProvider.cs
- * Form.cs
- * removed some throw notimplmented ecexptions
- * Some small implmentaions
- * some dead code removal
- 2002-11-28 DennisHayes <[email protected]>
- * In visual studio, I added a SWFTest project to the SWF solution.
- * Using Microsoft's swf.dll, I added one of each possible stock controls to the form.
- * I closed the form (swf design stuff i svery incomplete).
- * I Removed the reference to MS's swf.dll, and added a reference to the SWF project.
- * The result compiles, runs, and can be closed, without crashing in windows.
- * PrintPreviewDialog is the only item (other than crystal reports) on the
- * standard toolbar that is not included.
- * When run, a standard window comes up, not a dialog/form type window.
- * The form is as small as possible, just a caption bar of minimum width
- * with control bax and min/max box. It can be resized to any size fine.
- * no controls are actualy displayed. they may be of zero size, or it
- * may be due to the window not being a dialog box, or it may be anything.
-
- * ApplicationContext.cs
- * Button.cs
- * ChangeLog
- * CheckBox.cs
- * CheckedListBox.cs
- * ColorDialog.cs
- * ComboBox.cs
- * ContainerControl.cs
- * Control.cs
- * DataGrid.cs
- * DateTimePicker.cs
- * DomainUpDown.cs
- * ErrorProvider.cs
- * FileDialog.cs
- * FontDialog.cs
- * Form.cs
- * GroupBox.cs
- * HelpProvider.cs
- * HScrollBar.cs
- * ImageList.cs
- * Label.cs
- * LinkLabel.cs
- * ListBox.cs
- * ListControl.cs
- * ListView.cs
- * logfile.txt
- * MainMenu.cs
- * Menu.cs
- * MenuItem.cs
- * NativeWindow.cs
- * NotifyIcon.cs
- * NumericUpDown.cs
- * OpenFileDialog.cs
- * PageSetupDialog.cs
- * Panel.cs
- * PictureBox.cs
- * PrintDialog.cs
- * PrintPreviewControl.cs
- * PrintPreviewDialog.cs
- * ProgressBar.cs
- * RadioButton.cs
- * RichTextBox.cs
- * SaveFileDialog.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * Splitter.cs
- * StatusBar.cs
- * System.Windows.Forms.csproj
- * System.Windows.Forms.csproj.user
- * TabControl.cs
- * TextBox.cs
- * TextBoxBase.cs
- * Timer.cs
- * ToolBar.cs
- * ToolBarButton.cs
- * tooltip.cs
- * TrackBar.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeView.cs
- * UpDownBase.cs
- * UserControl.cs
- * VScrollBar.cs
- * win32Enums.cs
- * win32functions.cs
- 2002-11-27 DennisHayes <[email protected]>
- * checkin for Alexandre Pigolkine ([email protected]) with minor changes
-
- * Control.cs
- * MainMenu.cs
- * Menu.cs
- * MenuItem.cs
- * NativeWindow.cs
- * win32Enums.cs
- * win32functions.cs
-
- * WIN32 implmentation
- 2002-11-24 DennisHayes <[email protected]>
- * Application.cs
- * Control.cs
- * Form.cs
- * Message.cs
- * NativeWindow.cs
- * ScrollableControl.cs
- * win32functions.cs
- * win32Structs.cs
-
- * Fixed added more win32 stuff
- * On windows in Visual studio and runs my test program, but does
- * not display a window. the window Handle is null, so the size gets set to 0,0.
-
- 2002-11-23 DennisHayes <[email protected]>
- checked in for Francois-Denis Gonthier
- * win32functions.cs
- * win32Structs.cs
- * Menu.cs
- * ScrollableControl.cs
- * MenuItem.cs
- * NativeWindow.cs
- * Form.cs
- * move some more stuff from monostub to c#
- * converted a couple of files to unix style line end
- * some implmementation
-
- 2002-11-17 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * Removed COMvisible. Docs say yes, but verifer says no
- 2002-11-17 DennisHayes <[email protected]>
- * Application.cs
- * Button.cs
- * Control.cs
- * Form.cs
- * Label.cs
- * ListBox.cs
- * Menu.cs
- * MessageBox.cs
- * NativeWindow.cs
- * PrintPreviewDialog.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * VScrollBar.cs
- * Made changes releated to the new win32 stuff
- 2002-11-17 DennisHayes <[email protected]>
- * Win32Enums.cs
- * Win32Handles.cs
- * Win32Interfaces.cs
- * Win32RegistryUtil.cs
- * Win32Structs.cs
- * Completed merging files from Carlos Harvey Perez
- * Moved all parts of Win32.cs to these files
- * eliminated Win32.cs.
- *
- * many things moved from win32.cs still commented out.
- * Also needs to be mono styled.
- * Win32.cs - removed
- 2002-11-12 DennisHayes <[email protected]>
- * Win32Enums.cs
- * Win32Handles.cs
- * Win32Interfaces.cs
- * Win32RegistryUtil.cs
- * Win32Structs.cs
- * Added files from Carlos Harvey Perez
- ** Thanks Carlos! **
- * Moved all parts of Win32.cs to these files
- * Execpt for functions. Will merge functions
- * and eliminate remove Win32.cs soon.
- *
- * most things moved from win32.cs still commented out.
- * Also needs to be mono styled.
- * Win32.cs
- * Moved stuff from win32.cs to files from Carlos.2002-11-12 Gonzalo Paniagua Javier <[email protected]>
- 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
- * ListBox.cs: added ItemHeight and DrawMode properties. Fixes the build
- in unix.
- * ListBox.cs: added ItemHeight and DrawMode properties. Fixes the build
- in unix.
- 2002-11-02 Miguel de Icaza <[email protected]>
- * Win32.cs: Added IsMenu, CreateMenu, AppendMenuA, DestroyMenu entry points.
-
- 2002-10-29 DennisHayes <[email protected]>
- * AmbientProperties.cs
- * Application.cs
- * ApplicationContext.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * ColumnHeader.cs
- * ContainerControl.cs
- * ContextMenu.cs
- * Control.cs
- * Cursors.cs
- * HScrollBar.cs
- * ListBox.cs
- * MainMenu.cs
- * Menu.cs
- * MenuItem.cs
- * MessageBox.cs
- * NativeWindow.cs
- * PictureBox.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * System.Windows.Forms.csproj
- * System.Windows.Forms.csproj.user
- * VScrollBar.cs
- * Win32.cs
- * minor formating, bug fixes, and implmentation
- 2002-10-29 DennisHayes <[email protected]>
- * checkin for Alexandre Pigolkine ([email protected])
- * Menu classes start on implmentation
- 2002-10-27 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * AssemblyInfo.cs
- * AxHost.cs
- * BaseCollection.cs
- * BindingMemberInfo.cs
- * BindingsCollection.cs
- * ButtonBase.cs
- * ColumnClickEventArgs.cs
- * ComboBox.cs
- * ContainerControl.cs
- * ContentsResizedEventArgs.cs
- * Control.cs
- * ControlEventArgs.cs
- * ConvertEventArgs.cs
- * DateBoldEventArgs.cs
- * DateRangeEventArgs.cs
- * DomainUpDown.cs
- * DragEventArgs.cs
- * DrawItemEventArgs.cs
- * FolderBrowserDialog.cs
- * Form.cs
- * GiveFeedbackEventArgs.cs
- * HelpEventArgs.cs
- * InputLanguageChangedEventArgs.cs
- * InputLanguageChangingEventArgs.cs
- * InvalidateEventArgs.cs
- * ItemChangedEventArgs.cs
- * ItemCheckEventArgs.cs
- * ItemDragEventArgs.cs
- * KeyEventArgs.cs
- * KeyPressEventArgs.cs
- * Keys.cs
- * LabelEditEventArgs.cs
- * LayoutEventArgs.cs
- * LinkClickedEventArgs.cs
- * LinkLabelLinkClickedEventArgs.cs
- * ListControl.cs
- * MeasureItemEventArgs.cs
- * MouseEventArgs.cs
- * NavigateEventArgs.cs
- * NodeLabelEditEventArgs.cs
- * PaintEventArgs.cs
- * PrintPreviewDialog.cs
- * PropertyTabChangedEventArgs.cs
- * PropertyValueChangedEventArgs.cs
- * QueryAccessibilityHelpEventArgs.cs
- * QueryContinueDragEventArgs.cs
- * ScrollEventArgs.cs
- * SelectedGridItemChangedEventArgs.cs
- * SplitterEventArgs.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanelClickEventArgs.cs
- * System.Windows.Forms.csproj
- * System.Windows.Forms.csproj.user
- * TextBox.cs
- * ToolBarButtonClickEventArgs.cs
- * TreeNodeConverter.cs
- * TreeViewCancelEventArgs.cs
- * UICuesEventArgs.cs
- * UpDownBase.cs
- * UpDownEventArgs.cs
- * VScrollBar.cs
- * Stubs now compliant with .NET 1.1 Beta, except for one that has dependencies.
- * Added FolderBrowserDialog.cs for .NET 1.1 beta compatibility.
- * Completed implmentation of all *Args classes.
- * Updated checkoutlist.
- * Made fixes so this will compile using Visual studio under windows.
- 2002-10-26 DennisHayes <[email protected]>
- * Added CheckOutFile to SWF one level up from here
- * to keep track of who is working on what.
- 2002-10-24 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * Application.cs
- * AssemblyInfo.cs
- * BaseCollection.cs
- * BindingContext.cs
- * BindingManagerBase.cs
- * BindingsCollection.cs
- * ContainerControl.cs
- * Control.cs
- * Font.cs
- * Form.cs
- * IAccessible.cs
- * InputLanguageCollection.cs
- * Label.cs
- * MessageBox.cs
- * PropertyTabChangedEventArgs.cs
- * ScrollableControl.cs
- * Win32.cs
- * WINELib.csproj
- * WINELib.csproj.user
- * winelib.sln
- * Changes to get winelib version running with more methods uncommented out.
- * Especialy trying to get CE compliance.
- 2002-10-22 DennisHayes <[email protected]>
- * Miguel moved files from WINELIB to here
- * See ochagelog for details
- 2002-10-13 DennisHayes <[email protected]>
- *Application.cs
- *AxHost.cs
- *ChangeLog
- *CheckedListBox.cs
- *ComboBox.cs
- *CurrencyManager.cs
- *DateTimePicker.cs
- *DomainUpDown.cs
- *FolderBrowserDialog.cs
- *ListBox.cs
- *logfile.txt
- *StatusBarDrawItemEventArgs.cs
- *TabControl.cs
- *TextBox.cs
- *TrackBar.cs
- *UpDownBase.cs
- * Updated to match .NET V1.1 Beta
- 2002-9-2 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * AmbientProperties.cs
- * AxHost.cs
- * Button.cs
- * ButtonBase.cs
- * CheckBox.cs
- * ColorDialog.cs
- * ColumnHeader.cs
- * ComboBox.cs
- * ContainerControl.cs
- * DataGrid.cs
- * DateTimePicker.cs
- * ListControl.cs
- * PrintPreviewDialog.cs
- * Implmented any functions.
- * System.Windows.Forms.csproj
- * System.Windows.Forms.csproj.user
- * Added win32.cs
- 2002-8-6 DennisHayes <[email protected]>
- * Checked in for Ginandrea Terzi ([email protected])
- * MeasureItemEventArgs.cs
- * PropertyValueChangedEventArgs.cs
- * ScrollEventArgs.cs
- * ScrollEventType.cs
- * SelectionMode.cs
- * Shortcut.cs
- * TickStyle.cs
- * ToolBarButtonClickEventArgs.cs
- * TreeViewAction.cs
- * TriangleDirection.cs
- * UICues.cs
- * UICuesEventArgs.cs
- * UpDownBase.cs
- * UpDownEventHandler.cs
- * Fixed syntax errors and verifier errors
- 2002-8-6 DennisHayes <[email protected]>
- * PropertyTabChangedEventArgs.cs
- * Minor sytax bug fixes.
- * System.Windows.Forms.csproj
- * System.Windows.Forms.csproj.user
- * System.Windows.Forms.sln
- * Added support for System.Windows.Forms.Design
- * Builds two dlls instead of one.
- * Allows compiling for now, but needs to be fixed
- 2002-8-2 DennisHayes <[email protected]>
- * Checked in for Ginandrea Terzi ([email protected])
- * AssemblyInfo.cs
- * ColumnClickEventArgs.cs
- * ContentsResizedEventArgs.cs
- * ControlEventArgs.cs
- * ConvertEventArgs.cs
- * DateBoldEventArgs.cs
- * DateRangeEventArgs.cs
- * DragEventArgs.cs
- * DrawItemEventArgs.cs
- * GiveFeedbackEventArgs.cs
- * HelpEventArgs.cs
- * InputLanguageChangedEventArgs.cs
- * InputLanguageChangingEventArgs.cs
- * InvalidateEventArgs.cs
- * ItemChangedEventArgs.cs
- * ItemCheckEventArgs.cs
- * ItemDragEventArgs.cs
- * KeyEventArgs.cs
- * KeyPressEventArgs.cs
- * LabelEditEventArgs.cs
- * LayoutEventArgs.cs
- * LinkClickedEventArgs.cs
- * LinkLabelLinkClickedEventArgs.cs
- * logfile.txt
- * MeasureItemEventArgs.cs
- * MouseEventArgs.cs
- * NavigateEventArgs.cs
- * NodeLabelEditEventArgs.cs
- * PaintEventArgs.cs
- * PropertyTabChangedEventArgs.cs
- * PropertyValueChangedEventArgs.cs
- * QueryAccessibilityHelpEventArgs.cs
- * QueryContinueDragEventArgs.cs
- * ScrollEventArgs.cs
- * SelectedGridItemChangedEventArgs.cs
- * SplitterEventArgs.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanelClickEventArgs.cs
- * ToolBarButtonClickEventArgs.cs
- * TreeViewCancelEventArgs.cs
- * UICuesEventArgs.cs
- * UpDownEventArgs.cs
- * Improved ToString functions
- * Completed the rest of the *.args classes
- 2002-8-1 DennisHayes <[email protected]>
- * Checked in for Ginandrea Terzi ([email protected])
- * KeyEventArgs.cs
- * KeyPressEventArgs.cs
- * LabelEditEventArgs.cs
- * LayoutEventArgs.cs
- * LinkClickedEventArgs.cs
- * LinkLabelLinkClickedEventArgs.cs
- * MeasureItemEventArgs.cs
- * MouseEventArgs.cs
- * NavigateEventArgs.cs
- * NodeLabelEditEventArgs.cs
- * PaintEventArgs.cs
- * PropertyTabChangedEventArgs.cs
- * PropertyValueChangedEventArgs.cs
- * QueryAccessibilityHelpEventArgs.cs
- * QueryContinueDragEventArgs.cs
- * ScrollEventArgs.cs
- * SelectedGridItemChangedEventArgs.cs
- * SplitterEventArgs.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanelClickEventArgs.cs
- * ToolBarButtonClickEventArgs.cs
- * TreeViewCancelEventArgs.cs
- * UICuesEventArgs.cs
- * UpDownEventArgs.cs
- * Corrected, cleaned up/ completed some *args.cs classes.
- * May break build, but should be easy to fix, will verifiy
- * tonight and check in any needed fixes.
- 2002-8-1 DennisHayes <[email protected]>
- * MonthCalendar.cs
- * ButtonBase.cs
- * Form.cs
- * MonthCalendar commented out, stubbs need work
- * GTK references removed from Buttonbase and form, to make compile easier.
- * Replace GTK references as soon as build works on Windows and Linux.
- * With this, SWF should compile uder visual studio
- 2002-8-1 DennisHayes <[email protected]>
- * TODOAttribute.cs
- * ComVisible.cs
- * added so the namespace can compile, remove when replaced with mono equivalents.
- 2002-8-1 DennisHayes <[email protected]>
- * System.Windows.Forms.csproj
- * System.Windows.Forms.csproj.user
- * System.Windows.Forms.sln
- * AssemblyInfo.cs * Not sure if this file is needed. not a part of the namespace, just visual studio
- * Added files to compile using visual Studio
- 2002-8-1 DennisHayes <[email protected]>
- * Getopt.cs
- * removed, file contained only trash, not needed.
- 2002-7-30 DennisHayes <[email protected]>
- * AccessibleNavigation.cs
- * AccessibleObject.cs
- * AccessibleSelection.cs
- * AmbientProperties.cs
- * Application.cs
- * ApplicationContext.cs
- * AxHost.cs
- * BaseCollection.cs
- * Binding.cs
- * BindingContext.cs
- * BindingManagerBase.cs
- * BindingMemberInfo.cs
- * BindingsCollection.cs
- * Button.cs
- * ButtonBase.cs
- * CaptionButton.cs
- * CharacterCasing.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * CheckState.cs
- * Clipboard.cs
- * ColorDialog.cs
- * ColumnClickEventArgs.cs
- * ColumnClickEventHandler.cs
- * ColumnHeader.cs
- * ComboBox.cs
- * CommonDialog.cs
- * ContainerControl.cs
- * ContentsResizedEventHandler.cs
- * ContextMenu.cs
- * Control.cs
- * ControlBindingsCollection.cs
- * ControlEventArgs.cs
- * ControlEventHandler.cs
- * ControlPaint.cs
- * ConvertEventHandler.cs
- * CreateParams.cs
- * CurrencyManager.cs
- * Cursor.cs
- * CursorConverter.cs
- * Cursors.cs
- * DataFormats.cs
- * DataGrid.cs
- * DataGridBoolColumn.cs
- * DataGridCell.cs
- * DataGridColumnStyle.cs
- * DataGridParentRowsLabelStyle.cs
- * DataGridPreferredColumnWidthTypeConverter.cs
- * DataGridTableStyle.cs
- * DataGridTextBox.cs
- * DataGridTextBoxColumn.cs
- * DataObject.cs
- * DateBoldEventArgs.cs
- * DateRangeEventArgs.cs
- * DateRangeEventHandler.cs
- * DateTimePicker.cs
- * DialogResult.cs
- * DockStyle.cs
- * DomainUpDown.cs
- * DragAction.cs
- * DragDropEffects.cs
- * DragEventArgs.cs
- * DragEventHandler.cs
- * DrawItemEventArgs.cs
- * DrawItemEventHandler.cs
- * DrawItemState.cs
- * DrawMode.cs
- * ErrorBlinkStyle.cs
- * ErrorIconAlignment.cs
- * ErrorProvider.cs
- * FeatureSupport.cs
- * FileDialog.cs
- * FlatStyle.cs
- * FontDialog.cs
- * Form.cs
- * FormBorderStyle.cs
- * FormStartPosition.cs
- * FormWindowState.cs
- * FrameStyle.cs
- * GiveFeedbackEventHandler.cs
- * GridColumnStylesCollection.cs
- * GridItemCollection.cs
- * GridTableStylesCollection.cs
- * GroupBox.cs
- * Help.cs
- * HelpEventHandler.cs
- * HelpProvider.cs
- * HScrollBar.cs
- * ImageIndexConverter.cs
- * ImageList.cs
- * ImageListStreamer.cs
- * InputLanguage.cs
- * InputLanguageChangedEventHandler.cs
- * InputLanguageChangingEventHandler.cs
- * InputLanguageCollection.cs
- * InvalidateEventHandler.cs
- * ItemChangedEventArgs.cs
- * ItemChangedEventHandler.cs
- * ItemCheckEventHandler.cs
- * ItemDragEventHandler.cs
- * KeyEventHandler.cs
- * KeyPressEventArgs.cs
- * KeyPressEventHandler.cs
- * KeysConverter.cs
- * Label.cs
- * LabelEditEventHandler.cs
- * LayoutEventHandler.cs
- * LinkArea.cs
- * LinkClickedEventHandler.cs
- * LinkLabel.cs
- * LinkLabelLinkClickedEventHandler.cs
- * ListBindingConverter.cs
- * ListBox.cs
- * ListControl.cs
- * ListView.cs
- * ListViewItem.cs
- * ListViewItemConverter.cs
- * logfile.txt
- * MainMenu.cs
- * MeasureItemEventHandler.cs
- * Menu.cs
- * MenuItem.cs
- * Message.cs
- * MessageBox.cs
- * MethodInvoker.cs
- * MonthCalendar.cs
- * MouseEventHandler.cs
- * NativeWindow.cs
- * NavigateEventHandler.cs
- * NodeLabelEditEventHandler.cs
- * NotifyIcon.cs
- * NumericUpDown.cs
- * OpacityConverter.cs
- * OpenFileDialog.cs
- * OSFeature.cs
- * PageSetupDialog.cs
- * PaintEventArgs.cs
- * PaintEventHandler.cs
- * Panel.cs
- * PrintControllerWithStatusDialog.cs
- * PrintDialog.cs
- * PrintPreviewControl.cs
- * PrintPreviewDialog.cs
- * ProgressBar.cs
- * PropertyGrid.cs
- * PropertyManager.cs
- * PropertyTabChangedEventArgs.cs
- * PropertyTabChangedEventHandler.cs
- * PropertyValueChangedEventHandler.cs
- * QueryAccessibilityHelpEventHandler.cs
- * QueryContinueDragEventHandler.cs
- * RadioButton.cs
- * RichTextBox.cs
- * SaveFileDialog.cs
- * Screen.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * ScrollEventArgs.cs
- * ScrollEventHandler.cs
- * SelectedGridItemChangedEventHandler.cs
- * SelectionRange.cs
- * SelectionRangeConverter.cs
- * SendKeys.cs
- * Splitter.cs
- * SplitterEventHandler.cs
- * StatusBar.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarDrawItemEventHandler.cs
- * StatusBarPanel.cs
- * StatusBarPanelClickEventArgs.cs
- * StatusBarPanelClickEventHandler.cs
- * StatusBarPanelCollection.cs
- * SystemInformation.cs
- * TabControl.cs
- * TabPage.cs
- * TextBox.cs
- * TextBoxBase.cs
- * ThreadExceptionDialog.cs
- * Timer.cs
- * ToolBar.cs
- * ToolBarButton.cs
- * ToolBarButtonClickEventHandler.cs
- * ToolTip.cs
- * TrackBar.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeNodeConverter.cs
- * TreeView.cs
- * TreeViewCancelEventHandler.cs
- * TreeViewEventHandler.cs
- * TreeViewImageIndexConverter.cs
- * UICuesEventArgs.cs
- * UICuesEventHandler.cs
- * UpDownBase.cs
- * UpDownEventHandler.cs
- * UserControl.cs
- * VScrollBar.cs
- * Fixed errors reported by verify.exe, mostly attribute errors.
- * Added my name to author's list to files I edited in the last two weeks
- 2002-7-22 DennisHayes <[email protected]>
- * DateTimePickerFormat.cs
- * Added values.
- * The NAMESPACE NOW COMPILES under windows in Visual Studio using the Microsoft version of the classes.
- * Verify.exe reports 600 errors.
- 2002-7-21 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * AmbientProperties.cs
- * AxHost.cs
- * BaseCollection.cs
- * BindingsCollection.cs
- * ButtonBase.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * ComboBox.cs
- * ContainerControl.cs
- * ContextMenu.cs
- * Control.cs
- * ControlEventArgs.cs
- * ControlPaint.cs
- * ConvertEventArgs.cs
- * DataGrid.cs
- * DataGridColumnStyle.cs
- * DataObject.cs
- * DateTimePicker.cs
- * DomainUpDown.cs
- * DragEventArgs.cs
- * DrawItemEventArgs.cs
- * ErrorProvider.cs
- * FeatureSupport.cs
- * FileDialog.cs
- * FontDialog.cs
- * Form.cs
- * GiveFeedbackEventArgs.cs
- * GridColumnStylesCollection.cs
- * GridItem.cs
- * GridItemCollection.cs
- * GridTableStylesCollection.cs
- * GroupBox.cs
- * Help.cs
- * HelpEventArgs.cs
- * HelpProvider.cs
- * HScrollBar.cs
- * ImageIndexConverter.cs
- * ImageList.cs
- * ImageListStreamer.cs
- * InputLanguage.cs
- * InputLanguageChangedEventArgs.cs
- * InputLanguageChangingEventArgs.cs
- * InputLanguageCollection.cs
- * InvalidateEventArgs.cs
- * ItemChangedEventArgs.cs
- * ItemCheckEventArgs.cs
- * ItemDragEventArgs.cs
- * KeyEventArgs.cs
- * KeyPressEventArgs.cs
- * KeysConverter.cs
- * Label.cs
- * LabelEditEventArgs.cs
- * LayoutEventArgs.cs
- * LinkArea.cs
- * LinkClickedEventArgs.cs
- * LinkLabel.cs
- * LinkLabelLinkClickedEventArgs.cs
- * LinkLabelLinkClickedEventHandler.cs
- * ListBindingConverter.cs
- * ListBox.cs
- * ListControl.cs
- * ListView.cs
- * ListViewItem.cs
- * ListViewItemConverter.cs
- * MainMenu.cs
- * MeasureItemEventArgs.cs
- * Menu.cs
- * MenuItem.cs
- * Message.cs
- * MessageBox.cs
- * MouseEventArgs.cs
- * NativeWindow.cs
- * NavigateEventArgs.cs
- * NodeLabelEditEventArgs.cs
- * NotifyIcon.cs
- * NumericUpDown.cs
- * OpacityConverter.cs
- * OpenFileDialog.cs
- * OSFeature.cs
- * PageSetupDialog.cs
- * PaintEventArgs.cs
- * Panel.cs
- * PrintControllerWithStatusDialog.cs
- * PrintDialog.cs
- * PrintPreviewDialog.cs
- * QueryAccessibilityHelpEventArgs.cs
- * QueryContinueDragEventArgs.cs
- * RadioButton.cs
- * RichTextBox.cs
- * SaveFileDialog.cs
- * Screen.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * ScrollEventArgs.cs
- * SelectedGridItemChangedEventArgs.cs
- * SelectionRange.cs
- * SelectionRangeConverter.cs
- * SendKeys.cs
- * Splitter.cs
- * SplitterEventArgs.cs
- * StatusBar.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanelCollection.cs
- * TabControl.cs
- * TabPage.cs
- * TextBox.cs
- * TextBoxBase.cs
- * ToolBar.cs
- * ToolBarButtonClickEventArgs.cs
- * ToolTip.cs
- * TrackBar.cs
- * TreeNodeCollection.cs
- * TreeView.cs
- * UserControl.cs
- * commented out inherited class that did not need to be stubbed.
- * fixed bugs, added values to one enum. Stubbed interfaces.
- * The NAMESPACE NOW COMPILES under windows in Visual Studio using the Microsoft version of the classes.
- * Verify.exe reports 600 errors.
- 2002-7-7 DennisHayes <[email protected]>
- * ToolBarButtonClickEventArgs.cs
- * UpDownEventArgs.cs
- * KeyPressEventHandler.cs
- * Added new files.
- 2002-7-7 DennisHayes <[email protected]>
- * AccessibleEvents.cs
- * AccessibleNavigation.cs
- * AccessibleObject.cs
- * AccessibleRole.cs
- * AccessibleSelection.cs
- * AccessibleStates.cs
- * AmbientProperties.cs
- * AnchorStyles.cs
- * Appearance.cs
- * Application.cs
- * ApplicationContext.cs
- * ArrangeDirection.cs
- * ArrangeStartingPosition.cs
- * AxHost.cs
- * BaseCollection.cs
- * Binding.cs
- * BindingContext.cs
- * BindingManagerBase.cs
- * BindingMemberInfo.cs
- * BindingsCollection.cs
- * BootMode.cs
- * Border3DSide.cs
- * Border3DStyle.cs
- * BorderStyle.cs
- * BoundsSpecified.cs
- * Button.cs
- * ButtonBase.cs
- * ButtonBorderStyle.cs
- * ButtonState.cs
- * CaptionButton.cs
- * CharacterCasing.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * CheckState.cs
- * Clipboard.cs
- * ColorDepth.cs
- * ColorDialog.cs
- * ColumnClickEventArgs.cs
- * ColumnClickEventHandler.cs
- * ColumnHeader.cs
- * ColumnHeaderStyle.cs
- * ComboBox.cs
- * ComboBoxStyle.cs
- * CommonDialog.cs
- * ComVisible.cs
- * ContainerControl.cs
- * ContentsResizedEventArgs.cs
- * ContentsResizedEventHandler.cs
- * ContextMenu.cs
- * Control.cs
- * ControlBindingsCollection.cs
- * ControlEventArgs.cs
- * ControlEventHandler.cs
- * ControlPaint.cs
- * ControlStyles.cs
- * ConvertEventArgs.cs
- * ConvertEventHandler.cs
- * CreateParams.cs
- * CurrencyManager.cs
- * Cursor.cs
- * CursorConverter.cs
- * Cursors.cs
- * DataFormats.cs
- * DataGrid.cs
- * DataGridBoolColumn.cs
- * DataGridCell.cs
- * DataGridColumnStyle.cs
- * DataGridLineStyle.cs
- * DataGridParentRowsLabelStyle.cs
- * DataGridPreferredColumnWidthTypeConverter.cs
- * DataGridTableStyle.cs
- * DataGridTextBox.cs
- * DataGridTextBoxColumn.cs
- * DataObject.cs
- * DateBoldEventArgs.cs
- * DateRangeEventArgs.cs
- * DateRangeEventHandler.cs
- * DateTimePicker.cs
- * DateTimePickerFormat.cs
- * day.cs
- * DialogResult.cs
- * DockStyle.cs
- * DomainUpDown.cs
- * DragAction.cs
- * DragDropEffects.cs
- * DragEventArgs.cs
- * DragEventHandler.cs
- * DrawItemEventArgs.cs
- * DrawItemEventHandler.cs
- * DrawItemState.cs
- * DrawMode.cs
- * ErrorBlinkStyle.cs
- * ErrorIconAlignment.cs
- * ErrorProvider.cs
- * FeatureSupport.cs
- * FileDialog.cs
- * FlatStyle.cs
- * FontDialog.cs
- * Form.cs
- * FormBorderStyle.cs
- * FormStartPosition.cs
- * FormWindowState.cs
- * FrameStyle.cs
- * Getopt.cs
- * GiveFeedbackEventArgs.cs
- * GiveFeedbackEventHandler.cs
- * GridColumnStylesCollection.cs
- * GridItem.cs
- * GridItemCollection.cs
- * GridItemType.cs
- * GridTableStylesCollection.cs
- * GroupBox.cs
- * Help.cs
- * HelpEventArgs.cs
- * HelpEventHandler.cs
- * HelpNavigator.cs
- * HelpProvider.cs
- * HorizontalAlignment.cs
- * HScrollBar.cs
- * IButtonControl.cs
- * ICommandExecutor.cs
- * IComponentEditorPageSite.cs
- * IContainerControl.cs
- * IDataGridColumnStyleEditingNotificationService.cs
- * IDataGridEditingService.cs
- * IDataObject.cs
- * IFeatureSupport.cs
- * IFileReaderService.cs
- * ImageIndexConverter.cs
- * ImageList.cs
- * ImageListStreamer.cs
- * ImeMode.cs
- * IMessageFilter.cs
- * InputLanguage.cs
- * InputLanguageChangedEventArgs.cs
- * InputLanguageChangedEventHandler.cs
- * InputLanguageChangingEventArgs.cs
- * InputLanguageChangingEventHandler.cs
- * InputLanguageCollection.cs
- * InvalidateEventArgs.cs
- * InvalidateEventHandler.cs
- * ItemActivation.cs
- * ItemBoundsPortion.cs
- * ItemChangedEventArgs.cs
- * ItemChangedEventHandler.cs
- * ItemCheckEventArgs.cs
- * ItemCheckEventHandler.cs
- * ItemDragEventArgs.cs
- * ItemDragEventHandler.cs
- * IWin32Window.cs
- * IWindowTarget.cs
- * KeyEventArgs.cs
- * KeyEventHandler.cs
- * KeyPressEventArgs.cs
- * KeyPressEventHandler.cs
- * Keys.cs
- * KeysConverter.cs
- * Label.cs
- * LabelEditEventArgs.cs
- * LabelEditEventHandler.cs
- * LayoutEventArgs.cs
- * LayoutEventHandler.cs
- * LeftRightAlignment.cs
- * LinkArea.cs
- * LinkBehavior.cs
- * LinkClickedEventArgs.cs
- * LinkClickedEventHandler.cs
- * LinkLabel.cs
- * LinkLabelLinkClickedEventArgs.cs
- * LinkLabelLinkClickedEventHandler.cs
- * LinkState.cs
- * ListBindingConverter.cs
- * ListBox.cs
- * ListControl.cs
- * ListView.cs
- * ListViewAlignment.cs
- * ListViewItem.cs
- * ListViewItemConverter.cs
- * MainMenu.cs
- * MdiLayout.cs
- * MeasureItemEventArgs.cs
- * MeasureItemEventHandler.cs
- * Menu.cs
- * MenuGlyph.cs
- * MenuItem.cs
- * MenuMerge.cs
- * Message.cs
- * MessageBox.cs
- * MessageBoxButtons.cs
- * MessageBoxDefaultButton.cs
- * MessageBoxIcon.cs
- * MessageBoxOptions.cs
- * MethodInvoker.cs
- * MonthCalendar.cs
- * MouseButtons.cs
- * MouseEventArgs.cs
- * MouseEventHandler.cs
- * NativeWindow.cs
- * NavigateEventArgs.cs
- * NavigateEventHandler.cs
- * NodeLabelEditEventArgs.cs
- * NodeLabelEditEventHandler.cs
- * NotifyIcon.cs
- * NumericUpDown.cs
- * OpacityConverter.cs
- * OpenFileDialog.cs
- * Orientation.cs
- * OSFeature.cs
- * PageSetupDialog.cs
- * PaintEventArgs.cs
- * PaintEventHandler.cs
- * Panel.cs
- * PictureBoxSizeMode.cs
- * PrintControllerWithStatusDialog.cs
- * PrintDialog.cs
- * PrintPreviewControl.cs
- * PrintPreviewDialog.cs
- * ProgressBar.cs
- * PropertyGrid.cs
- * PropertyManager.cs
- * PropertySort.cs
- * PropertyTabChangedEventArgs.cs
- * PropertyTabChangedEventHandler.cs
- * PropertyValueChangedEventArgs.cs
- * PropertyValueChangedEventHandler.cs
- * QueryAccessibilityHelpEventArgs.cs
- * QueryAccessibilityHelpEventHandler.cs
- * QueryContinueDragEventArgs.cs
- * QueryContinueDragEventHandler.cs
- * RadioButton.cs
- * RichTextBox.cs
- * RichTextBoxFinds.cs
- * RichTextBoxScrollBars.cs
- * RichTextBoxSelectionAttribute.cs
- * RichTextBoxSelectionTypes.cs
- * RichTextBoxStreamType.cs
- * RichTextBoxWordPunctuations.cs
- * RightToLeft.cs
- * SaveFileDialog.cs
- * Screen.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * ScrollBars.cs
- * ScrollButton.cs
- * ScrollEventArgs.cs
- * ScrollEventHandler.cs
- * ScrollEventType.cs
- * SecurityIDType.cs
- * SelectedGridItemChangedEventArgs.cs
- * SelectedGridItemChangedEventHandler.cs
- * SelectionMode.cs
- * SelectionRange.cs
- * SelectionRangeConverter.cs
- * SendKeys.cs
- * Shortcut.cs
- * SizeGripStyle.cs
- * SortOrder.cs
- * Splitter.cs
- * SplitterEventArgs.cs
- * SplitterEventHandler.cs
- * StatusBar.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarDrawItemEventHandler.cs
- * StatusBarPanel.cs
- * StatusBarPanelAutoSize.cs
- * StatusBarPanelBorderStyle.cs
- * StatusBarPanelClickEventArgs.cs
- * StatusBarPanelClickEventHandler.cs
- * StatusBarPanelCollection.cs
- * StatusBarPanelStyle.cs
- * StructFormat.cs
- * SystemInformation.cs
- * TabAlignment.cs
- * TabAppearance.cs
- * TabControl.cs
- * TabDrawMode.cs
- * TabPage.cs
- * TabSizeMode.cs
- * TextBox.cs
- * TextBoxBase.cs
- * ThreadExceptionDialog.cs
- * TickStyle.cs
- * Timer.cs
- * ToolBar.cs
- * ToolBarAppearance.cs
- * ToolBarButton.cs
- * ToolBarButtonClickEventArgs.cs
- * ToolBarButtonClickEventHandler.cs
- * ToolBarButtonStyle.cs
- * ToolBarTextAlign.cs
- * ToolTip.cs
- * TrackBar.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeNodeConverter.cs
- * TreeView.cs
- * TreeViewAction.cs
- * TreeViewCancelEventArgs.cs
- * TreeViewCancelEventHandler.cs
- * TreeViewEventArgs.cs
- * TreeViewEventHandler.cs
- * TreeViewImageIndexConverter.cs
- * UICues.cs
- * UICuesEventArgs.cs
- * UICuesEventHandler.cs
- * UpDownBase.cs
- * UpDownEventArgs.cs
- * UpDownEventHandler.cs
- * UserControl.cs
- * View.cs
- * VScrollBar.cs
- * Monostyled everything!
- 2002-7-7 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * AmbientProperties.cs
- * AxHost.cs
- * BindingsCollection.cs
- * Button.cs
- * ButtonBase.cs
- * ChangeLog
- * CheckBox.cs
- * CheckedListBox.cs
- * ColorDialog.cs
- * ComboBox.cs
- * CommonDialog.cs
- * ContainerControl.cs
- * ContextMenu.cs
- * ControlEventArgs.cs
- * CurrencyManager.cs
- * DataGrid.cs
- * DataGridBoolColumn.cs
- * DataGridColumnStyle.cs
- * DataGridTableStyle.cs
- * DataGridTextBox.cs
- * DataGridTextBoxColumn.cs
- * DateTimePickerFormat.cs
- * ErrorProvider.cs
- * FileDialog.cs
- * FontDialog.cs
- * Form.cs
- * GroupBox.cs
- * HelpProvider.cs
- * HScrollBar.cs
- * ImageList.cs
- * KeyPressEventHandler.cs
- * Label.cs
- * LinkLabel.cs
- * LinkLabelLinkClickedEventArgs.cs
- * ListBox.cs
- * ListControl.cs
- * ListView.cs
- * logfile.txt
- * MainMenu.cs
- * Menu.cs
- * MenuItem.cs
- * MonthCalendar.cs
- * NotifyIcon.cs
- * OpenFileDialog.cs
- * PageSetupDialog.cs
- * Panel.cs
- * PrintDialog.cs
- * PropertyManager.cs
- * RadioButton.cs
- * RichTextBox.cs
- * SaveFileDialog.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * Splitter.cs
- * StatusBar.cs
- * StatusBarPanel.cs
- * TabControl.cs
- * TabPage.cs
- * TextBox.cs
- * TextBoxBase.cs
- * ThreadExceptionDialog.cs
- * Timer.cs
- * ToolBar.cs
- * ToolBarButton.cs
- * TrackBar.cs
- * TreeView.cs
- * UpDownBase.cs
- * VScrollBar.cs
- * Uncommented stuff, re-commented stuff, adding usings, fixed minor syntax errors.
- 2002-7-6 DennisHayes <[email protected]>
- * DragEventArgs.cs
- * PropertyValueChangedEventArgs.cs
- * InputLanguageChangedEventArgs.cs
- * added files
- 2002-7-6 DennisHayes <[email protected]>
- * ToolBarButtonClickEventArgs.cs
- * UpDownEventArgs.cs
- * PropertyValueChangedEventArgs.c
- * Added new files
- 2002-7-6 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * AmbientProperties.cs
- * Application.cs
- * ApplicationContext.cs
- * AxHost.cs
- * BaseCollection.cs
- * Binding.cs
- * BindingContext.cs
- * BindingManagerBase.cs
- * BindingsCollection.cs
- * CaptionButton.cs
- * Clipboard.cs
- * ColumnHeader.cs
- * Control.cs
- * ControlBindingsCollection.cs
- * ControlPaint.cs
- * CreateParams.cs
- * CurrencyManager.cs
- * Cursor.cs
- * CursorConverter.cs
- * Cursors.cs
- * DataFormats.cs
- * DataGridPreferredColumnWidthTypeConverter.cs
- * DataGridTextBoxColumn.cs
- * DataObject.cs
- * DateBoldEventArgs.cs
- * DateTimePicker.cs
- * DomainUpDown.cs
- * FeatureSupport.cs
- * FontDialog.cs
- * Form.cs
- * GridColumnStylesCollection.cs
- * GridItemCollection.cs
- * GridTableStylesCollection.cs
- * Help.cs
- * IButtonControl.cs
- * IFileReaderService.cs
- * ImageIndexConverter.cs
- * ImageListStreamer.cs
- * IMessageFilter.cs
- * InputLanguage.cs
- * InputLanguageChangeEventArgs.cs
- * InputLanguageCollection.cs
- * ItemChangedEventArgs.cs
- * KeyEventArgs.cs
- * KeyPressEventArgs.cs
- * KeysConverter.cs
- * LinkLabel.cs
- * LinkLabelLinkClickedEventArgs.cs
- * LinkLabelLinkClickedEventHandler.cs
- * ListBindingConverter.cs
- * ListViewItem.cs
- * ListViewItemConverter.cs
- * logfile.txt
- * MessageBox.cs
- * NativeWindow.cs
- * NumericUpDown.cs
- * OpacityConverter.cs
- * OSFeature.cs
- * PaintEventArgs.cs
- * PrintControllerWithStatusDialog.cs
- * PropertyGrid.cs
- * PropertyTabChangedEventArgs.cs
- * PropertyTabChangedEventHandler.cs
- * PropertyValueChangedEventArgs.cs
- * Screen.cs
- * ScrollEventArgs.cs
- * SelectionRange.cs
- * SelectionRangeConverter.cs
- * SendKeys.cs
- * SplitterEventArgs.cs
- * StatusBarPanelClickEventArgs.cs
- * StatusBarPanelCollection.cs
- * SystemInformation.cs
- * ToolBarButtonClickEventArgs.cs
- * ToolTip.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeNodeConverter.cs
- * TreeViewCancelEventArgs.cs
- * TreeViewImageIndexConverter.cs
- * UICuesEventArgs.cs
- * UpDownBase.cs
- * UpDownEventArgs.cs
- * UserControl.cs
- * Added usings, corrected minor syntax errors, uncommented some stuff to flush out compile errors.
- 2002-7-3 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * Application.cs
- * AxHost.cs
- * Button.cs
- * Control.cs
- * Form.cs
- * GridColumnStylesCollection.cs
- * GridItemCollection.cs
- * GridTableStylesCollection.cs
- * ImageIndexConverter.cs
- * ImageListStreamer.cs
- * InputLanguageChangingEventArgs.cs
- * KeysConverter.cs
- * Label.cs
- * LinkLabel.cs
- * LinkLabelLinkClickedEventArgs.cs
- * ListBox.cs
- * ListView.cs
- * ListViewItem.cs
- * ListViewItemConverter.cs
- * Menu.cs
- * NumericUpDown.cs
- * ScrollableControl.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanel.cs
- * StatusBarPanelCollection.cs
- * TabControl.cs
- * TrackBar.cs
- * TreeNodeCollection.cs
- * added usings, minor syntax corrections.
- 2002-7-3 DennisHayes <[email protected]>
- * checked in for Jaak Simm ([email protected])
- * PrintPreviewControl.cs
- * PrintPreviewDialog.cs
- * ProgressBar.cs
- * PropertyGrid.cs
- * PropertyManager.cs
- * PropertyTabChangedEventArgs.cs
- * new files added
- 2002-7-2 DennisHayes <[email protected]>
- * Application.cs
- * ControlEventArgs.cs
- * Form.cs
- * merged changes made by miguel and hestilow in gkt# to system.windows.forms
- 2002-7-2 DennisHayes <[email protected]>
- * Button.cs
- * ButtonBase.cs
- * ContainerControl.cs
- * Label.cs
- * ScrollableControl.cs
- * Copied changes made by miguel and hestilow in gkt# to system.windows.forms
- 2002-7-2 DennisHayes <[email protected]>
- * Checked in for Richard Baumann ([email protected])
- * DataGridTextBoxColumn.cs
- * DataObject.cs
- * DateBoldEventArgs.cs
- * DateRangeEventArgs.cs
- * DateTimePicker.cs
- * DomainUpDown.cs
- * DragEventArgs.cs
- * DrawItemEventArgs.cs
- * added new files
- 2002-7-2 DennisHayes <[email protected]>
- * checked in for Jaak Simm ([email protected])
- * DataFormats.cs
- * DataGrid.cs
- * DataGridBoolColumn.cs
- * DataGridColumnStyle.cs
- * DataGridPreferredColumnWidthTypeConverter.cs
- * DataGridTableStyle.cs
- * DataGridTextBox.cs
- * new classes added
- 2002-7-2 DennisHayes <[email protected]>
- * Checked in for Richard Baumann ([email protected])
- * StatusBar.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanel.cs
- * StatusBarPanelClickEventArgs.cs
- * SystemInformation.cs
- * Minor changes by Rich B
- 2002-7-1 DennisHayes <[email protected]>
- * AccessibleObject.cs
- * AmbientProperties.cs
- * Application.cs
- * ApplicationContext.cs
- * ArrangeDirection.cs
- * AxHost.cs BaseCollection.cs
- * Binding.cs BindingContext.cs
- * BindingManagerBase.cs
- * BindingMemberInfo.cs
- * BindingsCollection.cs
- * Button.cs
- * ButtonBase.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * Clipboard.cs
- * ColorDialog.cs
- * ColumnClickEventArgs.cs
- * ColumnClickEventHandler.cs
- * ColumnHeader.cs
- * ComboBox.cs
- * CommonDialog.cs
- * ComVisible.cs
- * ContainerControl.cs
- * ContentsResizedEventArgs.cs
- * ContextMenu.cs
- * Control.cs
- * ControlBindingsCollection.cs
- * ControlEventArgs.cs
- * ControlPaint.cs
- * ConvertEventArgs.cs
- * CreateParams.cs
- * CurrencyManager.cs
- * Cursor.cs
- * CursorConverter.cs
- * Cursors.cs
- * ErrorProvider.cs
- * FeatureSupport.cs
- * FileDialog.cs
- * Form.cs
- * GiveFeedbackEventArgs.cs
- * GridColumnStylesCollection.cs
- * GridItem.cs
- * GridItemCollection.cs
- * GridTableStylesCollection.cs
- * GroupBox.cs
- * Help.cs
- * HelpEventArgs.cs
- * HelpProvider.cs
- * HScrollBar.cs
- * ImageIndexConverter.cs
- * ImageList.cs
- * ImageListStreamer.cs
- * InputLanguage.cs
- * InputLanguageChangedEventArgs.cs
- * InputLanguageChangingEventArgs.cs
- * InputLanguageCollection.cs
- * InvalidateEventArgs.cs
- * ItemChangedEventArgs.cs
- * ItemCheckEventArgs.cs
- * ItemDragEventArgs.cs
- * IWin32Window.cs
- * KeyEventArgs.cs
- * KeyPressEventArgs.cs
- * KeysConverter.cs
- * Label.cs
- * LabelEditEventArgs.cs
- * LabelEditEventHandler.cs
- * LayoutEventArgs.cs
- * LinkClickedEventArgs.cs
- * LinkLabel.cs
- * LinkLabelLinkClickedEventArgs.cs
- * ListBindingConverter.cs
- * ListBox.cs
- * ListControl.cs
- * ListView.cs
- * ListViewItem.cs
- * ListViewItemConverter.cs
- * MainMenu.cs
- * MeasureItemEventArgs.cs
- * Menu.cs MenuItem.cs
- * Message.cs
- * MessageBox.cs
- * MonthCalendar.cs
- * MouseEventArgs.cs
- * NativeWindow.cs
- * NavigateEventArgs.cs
- * NodeLabelEditEventArgs.cs
- * NotifyIcon.cs
- * NumericUpDown.cs
- * OpacityConverter.cs
- * OpenFileDialog.cs
- * OSFeature.cs
- * PageSetupDialog.cs
- * PaintEventArgs.cs
- * Panel.cs
- * PrintControllerWithStatusDialog.cs
- * PrintDialog.cs
- * QueryAccessibilityHelpEventArgs.cs
- * QueryContinueDragEventArgs.cs
- * RadioButton.cs
- * RichTextBox.cs
- * SaveFileDialog.cs
- * Screen.cs
- * ScrollableControl.cs
- * ScrollBar.cs
- * ScrollEventArgs.cs
- * SelectedGridItemChangedEventArgs.cs
- * SelectionRange.cs
- * SelectionRangeConverter.cs
- * SendKeys.cs
- * Splitter.cs
- * SplitterEventArgs.cs
- * StatusBar.cs
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanel.cs
- * StatusBarPanelClickEventArgs.cs
- * StatusBarPanelCollection.cs
- * SystemInformation.cs
- * TabControl.cs
- * TabPage.cs
- * TextBox.cs
- * TextBoxBase.cs
- * ThreadExceptionDialog.cs
- * Timer.cs
- * ToolBar.cs
- * ToolBarButton.cs
- * TrackBar.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeNodeConverter.cs
- * TreeView.cs
- * TreeViewCancelEventArgs.cs
- * TreeViewEventArgs.cs
- * TreeViewImageIndexConverter.cs
- * UICuesEventArgs.cs
- * UserControl.cs
- * VScrollBar.cs
- * Implmented some stuff, fixed some stuff, monostyled some stuff, uncommented-out some stuff.
- 2002-7-1 DennisHayes <[email protected]>
- * changelog
- * reversed order, putting most recent entries at the top
- 2002-6-24 DennisHayes <[email protected]>
- * AccessibleStates.cs
- * ArrangeDirection.cs
- * AccessibleEvents.cs
- * Added values for enums
- 2002-6-24 DennisHayes <[email protected]>
- * BindingMemberInfo.cs
- * CaptionButton.cs
- * DataGridCell.cs
- * Message.cs
- * MessageBox.cs
- * Fixed bugs preventing compile
- 2002-6-18 DennisHayes <[email protected]>
- * checked in for Stefan Warnke ([email protected])
- * UICuesEventArgs.cs
- * UpDownBase.cs
- * Better comments and formatting
- 2002-6-18 DennisHayes <[email protected]>
- * Checked in for Jackson Harper ([email protected])
- * ToolBar.cs
- * TabControl.cs
- * TabPage.cs
- * Added sub classes
- 2002-6-5 DennisHayes <[email protected]>
- * TabControl.cs
- * TabPage.cs
- * TextBox.cs
- * TextBoxBase.cs
- * ThreadExceptionDialog.cs
- * Timer.cs
- * added new files for Jackson Harper ([email protected])
- * needs to be mono styled, and may have other issues
- 2002-6-5 DennisHayes <[email protected]>
- * ErrorProvider.cs
- * PrintControllerWithStatusDialog.cs
- * PrintDialog.cs
- * added new files for paul
- 2002-6-5 DennisHayes <[email protected]>
- * StatusBarDrawItemEventArgs.cs
- * StatusBarPanel.cs
- * StatusBarPanelClickEventArgs.cs
- * StatusBarPanelCollection.cs
- * SystemInformation.cs
- * added new files for Richard Baumann ([email protected])
- 2002-6-5 DennisHayes <[email protected]>
- * removed, code moved to main class files, Form.cs, ImageList.cs, LinkLabel.cs,
- * ListBox.cs, ListView.cs, ListViewItem.cs, Menu.cs, MonthCalendar.cs, ScrollableControl.cs
- * Form.ControlCollectison.cs
- * ImageList.ImageCollection.c
- * LinkLabel.LinkCollection.cs
- * ListBox.ObjectCollection.cs
- * ListBox.SelectedIndexCollection.cs
- * ListBox.SelectedObjectCollection.cs
- * ListView.CheckedListViewItemCollection.cs
- * ListView.CheckedIndexCollection.cs
- * ListView.ColumnHeaderCollection.cs
- * ListView.ListViewItemCollection.cs
- * ListView.SelectedIndexCollection.cs
- * ListView.SelectedListViewItemCollection.cs
- * ListViewItem.ListViewSubItem.cs
- * ListViewItem.ListViewSubItemCollection.cs
- * Menu.MenuItemCollection.cs
- * MonthCalendar.HitTestInfo.cs
- * ScrollableControl.DockPaddingEdges.cs
- 2002-6-5 DennisHayes <[email protected]>
- * Checked in for Jackson Harper ([email protected])
- * ToolBar.cs
- * ToolBarButton.cs
- * ToolTip.cs
- * TrackBar.cs
- * TreeNode.cs
- * TreeNodeCollection.cs
- * TreeNodeConverter.cs
- * TreeView.cs
- * TreeViewCancelEventArgs.cs
- * TreeViewEventArgs.cs
- * TreeViewImageIndexConverter.cs
- * Just stubbs
- * New files added, work in progress cleanup and mono style needed.
- 2002-6-5 DennisHayes <[email protected]>
- * checked in for Stefan Warnke ([email protected])
- * UICuesEventArgs.cs
- * UpDownBase.cs
- * Just stubbs
- * New files, work in progress, needs cleanup and mono style
- 2002-5-31 DennisHayes <[email protected]>
- * ItemChangedEventHandler.cs
- * InvalidateEventHandler.cs
- * ItemChangedEventHandler.cs
- * added new files
- 2002-5-31 DennisHayes <[email protected]>
- Check in for Paul Osman <[email protected]>
- * Panel.cs
- * New class, Stubbed and commented out
- 2002-5-31 DennisHayes <[email protected]>
- Check in for Paul Osman <[email protected]>
- * MonthCalendar.cs
- * MonthCalendar.HitTestInfo.cs
- * MouseEventArgs.cs
- * NativeWindow.cs
- * Removed trash byte
- 2002-5-31 DennisHayes <[email protected]>
- * ColumnClickEventArgs.cs
- * Fully implmented.
- 2002-5-31 DennisHayes <[email protected]>
- * Minor formating in lots of files
- 2002-5-27 DennisHayes <[email protected]>
- Added structs. All structs in System.Windows.Forms done
- * BindingMemberInfo.cs
- * DataGridCell.cs
- * LinkArea.cs
- * Message.cs
- * Complete execpt for Message.cs GetLParam
- * and
- * BindingMemberInfo needs constructor.
- * All need verification of hashcodes.
- 2002-5-27 DennisHayes <[email protected]>
- Added delegates. All delegates in System.Windows.Forms done
- * ColumnClickEventHandler.cs
- * ContentsResizedEventHandler.cs
- * ControlEventHandler.cs
- * ConvertEventHandler.cs
- * DateRangeEventHandler.cs
- * DragEventHandler.cs
- * DrawItemEventHandler.cs
- * GiveFeedbackEventHandler.cs
- * HelpEventHandler.cs
- * InputLanguageChangedEventHandler.cs
- * InputLanguageChangingEventHandler.cs
- * InvalidateEventHandler.cs
- * ItemChangedEventHandler.cs
- * ItemCheckEventHandler.cs
- * ItemDragEventHandler.cs
- * KeyEventHandler.cs
- * LabelEditEventHandler.cs
- * LayoutEventHandler.cs
- * LinkClickedEventHandler.cs
- * LinkLabelLinkClickedEventHandler.cs
- 2002-5-27 DennisHayes <[email protected]>
- Check in for Paul Osman <[email protected]>
- * NumericUpDown.cs
- * OpacityConverter.cs
- * OpenFileDialog.cs
- * OSFeature.cs
- * PageSetupDialog.cs
- * PaintEventArgs.cs
- * MonthCalendar.HitTestInfo.cs
- * MouseEventArgs.cs
- * NativeWindow.cs
- * Stubbed and commented out
- * NativeWindow.cs, MonthCalendar.HitTestInfo.cs, MouseEventArgs.cs,
- * have bad extra byte from old skeleton, need new corrected version.
- * MonthCalendar.HitTestInfo.cs needs to be incorporated into MonthCalendar.
- 2002-5-27 DennisHayes <[email protected]>
- Check in for Paul Osman <[email protected]>
- * Menu.cs
- * Menu.MenuItemCollection.cs
- * MenuItem.cs
- * MessageBox.cs
- * MonthCalendar.cs
- * Stubbed and commented out
- * MonthCalendar.cs has bad extra byte from old skeleton, need new corrected version.
- * MonthCalendar.HitTestInfo.cs needs to be incorporated into MonthCalendar.
- * Menu.MenuItemCollection.cs needs to be incorporated into Menu.cs.
- 2002-5-27 DennisHayes <[email protected]>
- Check in for Paul Osman <[email protected]>
- * Panel.cs
- * New class, Stubbed and commented out
- 2002-5-10 Dennis Hayes
- * added IMessageFilter
- * Interfaces complete
- 2002-5-8 Dennis Hayes <[email protected]>
- * RichTextBoxFinds.cs
- * RichTextBoxScrollBars.cs
- * RichTextBoxSelectionAttribute.cs
- * RichTextBoxSelectionTypes.cs
- * RichTextBoxStreamType.cs
- * RichTextBoxWordPunctuations.cs
- * RightToLeft.cs
- * ScrollBars.cs
- * ScrollButton.cs
- * ScrollEventType.cs
- * SecurityIDType.cs
- * SelectionMode.cs
- * Shortcut.cs
- * SizeGripStyle.cs
- * SortOrder.cs
- * StatusBarPanelAutoSize.cs
- * StatusBarPanelBorderStyle.cs
- * StatusBarPanelStyle.cs
- * StructFormat.cs
- * TabAlignment.cs
- * TabAppearance.cs
- * TabDrawMode.cs
- * TabSizeMode.cs
- * TickStyle.cs
- * ToolBarAppearance.cs
- * ToolBarButtonStyle.cs
- * ToolBarTextAlign.cs
- * TreeViewAction.cs
- * UICues.cs
- * View.cs
- * Added enums.
- * All System.Windows.Forms enums complete with correct values.
- 2002-5-8 Dennis Hayes <[email protected]>
- Dennis Hayes <[email protected]>
- Checking in new System.Windows.forms classes (a* to c*) for
- Jaak Simm <[email protected]>
- * AmbientProperties.cs
- * Application.cs
- * ApplicationContext.cs
- * AxHost.cs
- * BaseCollection.cs
- * Binding.cs
- * BindingContext.cs
- * BindingManagerBase.cs
- * BindingsCollection.cs
- * Button.cs
- * ButtonBase.cs
- * CheckBox.cs
- * CheckedListBox.cs
- * Clipboard.cs
- * ColorDialog.cs
- * ColumnClickEventArgs.cs
- * ColumnHeader.cs
- * ComboBox.cs
- * CommonDialog.cs
- * ContainerControl.cs
- * ContentsResizedEventArgs.cs
- * ContextMenu.cs
- * Control.cs
- * ControlBindingsCollection.cs
- * ControlEventArgs.cs
- * ControlPaint.cs
- * ConvertEventArgs.cs
- * CreateParams.cs
- * CurrencyManager.cs
- * Cursor.cs
- * CursorConverter.cs
- * Cursors.cs
- * Classes stubbed and commented out.
- 2002-5-8 Dennis Hayes <[email protected]>
- Dennis Hayes <[email protected]>
- Checking in new System.Windows.forms classe for John Rebbeck <[email protected]>
- * UserControl.cs
- Stubbed and commented out
- 2002-5-8 Dennis Hayes <[email protected]>
- Dennis Hayes <[email protected]>
- Checking in new System.Windows.forms classe for Paul Osman <[email protected]>
- * NavigateEventArgs.cs
- * NodeLabelEditEventArgs.cs
- * NotifyIcon.cs
- Stubbed and commented out
- 2002-05-07 Daniel Carrera ([email protected])
- * Fixed a problem with an "extra byte" problem. It caused an extra '?'
- at the beginning of some lines.
- Classes F-L and Q-R were updated.
- * Added the classes SaveFileDialog.cs and Screen.cs
- 2002-5-7 Dennis Hayes <[email protected]>
- * Added duplicate values
- * System.Windows.Forms.Keys.cs
- 2002-5-7 Dennis Hayes <[email protected]>
- * LeftRightAlignment.cs
- * LinkBehavior.cs
- * LinkState.cs
- * ListViewAlignment.cs
- * MdiLayout.cs
- * MenuGlyph.cs
- * MenuMerge.cs
- * MessageBoxButtons.cs
- * MessageBoxDefaultButton.cs
- * MessageBoxIcon.cs
- * MessageBoxOptions.cs
- * MouseButtons.cs
- * Orientation.cs
- * PictureBoxSizeMode.cs
- * PropertySort.cs
- * Added some more enums. All have correct values.
- * 5-5-2002 Dennis Hayes <[email protected]>
- * Added enums
- * GridItemType.cs
- * HelpNavigator.cs
- * HorizontalAlignment.cs
- * ImeMode.cs
- * ItemActivation.cs
- * ItemBoundsPortion.cs
- * Keys.cs
- * All correct execpt for Keys.cs which is missing a half dozen
- * duplicate entries that need correcting.
- 2002-05-02 Daniel Carrera ([email protected])
- * small update to classes [F-H]*
- * added stubbed and commented out classes for [I-L]*
- * added stubbed and commented out classes for R*
- 2002-4-23 Dennis Hayes <[email protected]>
- * AccessibleNavigation.cs :added to cvs with bad enum values, I will correct.
- * AccessibleSelection.cs :added with good enum values.
- * ContentsResizedEventHandler.cs :Added delagate
- * MainMenu.cs
- * AccessibleObject.cs
- * MeasureItemEventArgs :added stubbed classes. Commented out.
- * IButtonControl.cs : Added interface.
- 2002-4-23 Dennis Hayes <[email protected]>
- * added stubbed and commented out classes from F to G *
- 2002-04-10 Duncan Mak <[email protected]>
- * CaptionButton.cs:
- * CharacterCasing.cs:
- * CheckState.cs:
- * DataGridParentRowsLabelStyle.cs:
- * DialogResult.cs:
- * DockStyle.cs:
- * DragAction.cs:
- * DragDropEffects.cs:
- * DrawItemState.cs:
- * DrawMode.cs:
- * ErrorBlinkStyle.cs:
- * ErrorIconAlignment.cs:
- * FlatStyle.cs:
- * FormBorderStyle.cs:
- * FormStartPosition.cs:
- * FormWindowState.cs:
- * FrameStyle.cs: Fixed enum layouts with EnumCheck.
|