Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~305 People Reached
Favorite Forums
Member Avatar for g1161018

I'm aware that to display the Control properties, you just need to use a code like this System.Reflection.PropertyInfo[] propertyInfo = button1.GetType().GetProperties(); for (int i = 0; i < propertyInfo.Length; i++) { textBlock.Text = i + " " + propertyInfo[i].Name + "\n" + textBlock.Text; }; You can also get the names …

Member Avatar for g1161018
0
305