C# と VB.NET の質問掲示板

ASP.NET、C++/CLI、Java 何でもどうぞ

C# と VB.NET の入門サイト

Controlの完全なCopyを作成したい


(過去ログ 105 を表示中)

[トピック内 1 記事 (1 - 1 表示)]  << 0 >>

■62704 / inTopicNo.1)  Controlの完全なCopyを作成したい
  
□投稿者/ Mira (73回)-(2011/10/28(Fri) 16:11:39)

分類:[ASP.NET (VB)] 

2011/10/28(Fri) 16:23:03 編集(投稿者)

いつも参考にさせてもらっています

ControlのCopyを作成しようとおもっているのですが下記のやり方ですと
ReadOnly PropertyのCopyはできないようです

Dim TypeSource As Type = ControlSource.GetType()
Dim ControlDest As Control = TypeSource.InvokeMember("", System.Reflection.BindingFlags.CreateInstance, _
Nothing, Nothing, Nothing)
For Each PropertySource As System.Reflection.PropertyInfo In TypeSource.GetProperties()
If PropertySource.CanWrite Then
PropertySource.SetValue(ControlDest, PropertySource.GetValue(ControlSource, Nothing), Nothing)
Else
End If
Next

全部Copyしたいのですが何かよい方法はないでしょうか?

FrameWork 2.0ですよろしくお願いします
引用返信 編集キー/


トピック内ページ移動 / << 0 >>

このトピックに書きこむ

過去ログには書き込み不可

管理者用

- Child Tree -