|
|
|
date: Sat, 29 Sep 2007 10:51:45 +0800,
group: microsoft.public.dotnet.framework.windowsforms.designtime
back
Re: question about copy/paste/cut in designer
Actually, you can do a property comparison. The copied control will have
all the same values as the original except name.
ex:
create new button (name="Button1", Text="Button1)
create new button (name="Button2", Text="Button2)
select both, copy, paste
pasted button (name="Button3, Text="Button1")
pasted button (name="Button4, Text="Button2")
In this example you know that Button3 is a copy of Button1 because they
both have the same Text property. It is possible, obviously, for
multiple controls to have the same Text property values. You can
mitigate this risk by looking at more properties.
*** Sent via Developersdex http://www.developersdex.com ***
date: Mon, 08 Oct 2007 08:06:51 -0700
author: Timker .
|
|