/[dotgnu-pnet]/pnetlib/System.Windows.Forms/Control.cs
ViewVC logotype

Diff of /pnetlib/System.Windows.Forms/Control.cs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.89 by darkdust, Thu Apr 28 08:33:49 2005 UTC revision 1.90 by ktreichel, Mon May 23 16:30:30 2005 UTC
# Line 1238  public class Control : IWin32Window, IDi Line 1238  public class Control : IWin32Window, IDi
1238                                  }                                  }
1239                                  set                                  set
1240                                  {                                  {
1241                                          SetBoundsCore(left, top, width, value,                                          if (value != height)
1242                                                  BoundsSpecified.Height);                                          {
1243                                                    SetBoundsCore(left, top, width, value,
1244                                                            BoundsSpecified.Height);
1245                                            }
1246                                  }                                  }
1247                          }                          }
1248  #if CONFIG_COMPONENT_MODEL  #if CONFIG_COMPONENT_MODEL
# Line 1338  public class Control : IWin32Window, IDi Line 1341  public class Control : IWin32Window, IDi
1341                                  }                                  }
1342                                  set                                  set
1343                                  {                                  {
1344                                          SetBoundsCore(value, top, width, height,                                          if(value != left)
1345                                                  BoundsSpecified.X);                                          {
1346                                                    SetBoundsCore(value, top, width, height,
1347                                                            BoundsSpecified.X);
1348                                            }
1349                                  }                                  }
1350                          }                          }
1351  #if CONFIG_COMPONENT_MODEL  #if CONFIG_COMPONENT_MODEL
# Line 1353  public class Control : IWin32Window, IDi Line 1359  public class Control : IWin32Window, IDi
1359                                  }                                  }
1360                                  set                                  set
1361                                  {                                  {
1362                                          SetBoundsCore(value.X, value.Y, width, height,                                          if(value.X != left || value.Y != top)
1363                                                  BoundsSpecified.Location);                                          {
1364                                                    SetBoundsCore(value.X, value.Y, width, height,
1365                                                            BoundsSpecified.Location);
1366                                            }
1367                                  }                                  }
1368                          }                          }
1369  #if CONFIG_COMPONENT_MODEL || CONFIG_EXTENDED_DIAGNOSTICS  #if CONFIG_COMPONENT_MODEL || CONFIG_EXTENDED_DIAGNOSTICS
# Line 1664  public class Control : IWin32Window, IDi Line 1673  public class Control : IWin32Window, IDi
1673                                  }                                  }
1674                                  set                                  set
1675                                  {                                  {
1676                                          SetBoundsCore(left, top, value.Width, value.Height,                                          if(value.Width != width || value.Height != height)
1677                                                  BoundsSpecified.Size);                                          {
1678                                                    SetBoundsCore(left, top, value.Width, value.Height,
1679                                                            BoundsSpecified.Size);
1680                                            }
1681                                  }                                  }
1682                          }                          }
1683  #if CONFIG_COMPONENT_MODEL  #if CONFIG_COMPONENT_MODEL
# Line 1765  public class Control : IWin32Window, IDi Line 1777  public class Control : IWin32Window, IDi
1777                                  }                                  }
1778                                  set                                  set
1779                                  {                                  {
1780                                          SetBoundsCore(left, value, width, height,                                          if(value != top)
1781                                                  BoundsSpecified.Y);                                          {
1782                                                    SetBoundsCore(left, value, width, height,
1783                                                            BoundsSpecified.Y);
1784                                            }
1785                                  }                                  }
1786                          }                          }
1787  #if CONFIG_COMPONENT_MODEL  #if CONFIG_COMPONENT_MODEL
# Line 1830  public class Control : IWin32Window, IDi Line 1845  public class Control : IWin32Window, IDi
1845                                  }                                  }
1846                                  set                                  set
1847                                  {                                  {
1848                                          SetBoundsCore(left, top, value, height,                                          if(value != width)
1849                                                  BoundsSpecified.Width);                                          {
1850                                                    SetBoundsCore(left, top, value, height,
1851                                                            BoundsSpecified.Width);
1852                                            }
1853                                  }                                  }
1854                          }                          }
1855          internal virtual bool IsTopLevel          internal virtual bool IsTopLevel

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26