Wiki

Changes between Version 6 and Version 7 of WxWidgetsPort

Show
Ignore:
Timestamp:
11/22/10 20:41:56 (14 years ago)
Author:
todd.a
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WxWidgetsPort

    v6 v7  
    3535Remove any lines for  
    3636{{{ 
     37#!cs 
    3738using System 
    3839using System.Collections.Generic 
     
    4849  Before ''''use System.Drawing'''' add a ''''use .. from line''''  for wx.NET 
    4950{{{ 
     51#!cobra 
    5052use wx from "wx.NET" 
    5153use System.Drawing 
     
    5355  or  add an explicit compiler directive ref line and a 'use wx' line 
    5456{{{ 
     57#!cobra 
    5558@ref "wx.NET" 
    5659        ... 
     
    7073    e.g.  
    7174{{{ 
     75#!cs 
    7276enum Cmd { About, Quit, Dialog } 
    7377}}}  
    7478    -> 
    7579{{{ 
     80#!cobra 
    7681enum Cmd 
    7782    About 
    7883    Quit 
    7984    Dialog 
    80  
    81  
     85}}} 
     86 
     87{{{ 
     88#!cs 
    8289enum ID_CONTROLS  { 
    8390    ID_RADIO_ORIENT = 5999, 
     
    8996    -> 
    9097{{{ 
     98#!cobra 
    9199enum ID_CONTROLS 
    92100    ID_RADIO_ORIENT = 5999 
     
    331339    e.g. 
    332340    {{{ 
     341#!cs 
    333342[STAThread] 
    334343static public void main() 
     
    336345    to 
    337346    {{{ 
     347#!cobra 
    338348def main is shared has STAThread  
    339349    }}}     
     
    347357    e.g. 
    348358  {{{ 
     359#!cobra 
    349360use wx from "wx.NET" 
    350361namespace SampleMinimal 
     
    354365  change to          
    355366{{{ 
     367#!cobra 
    356368use wx from "wx.NET" 
    357369namespace SampleMinimal