<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Using Property Grid in C#</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Property Grid : Using Property Grid in C#]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 05 Apr 2026 16:00:00 +0000</pubDate>
  <lastBuildDate>Thu, 24 Mar 2005 16:14:17 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=1831</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Using Property Grid in C# : I&amp;#039;m using PropertyGrid in...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5931&amp;title=using-property-grid-in-c#5931</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1069">bluelizard</a><br /><strong>Subject:</strong> 1831<br /><strong>Posted:</strong> 24 March 2005 at 4:14pm<br /><br />I'm using PropertyGrid in C# too.&nbsp; The main problem with theValueChanged event, as currently implemented, is that it's not thateasy to find out what the value <span style="font-style: italic;">was</span>before it was edited, so that if the data entered is invalid, you canset it back.&nbsp; My hack around it is to store the current data valuein the Tag property, and upon validation, change the value of the Tagproperty, otherwise reset the value back to what's in the Tagproperty.&nbsp; Kinda hackish, but whatever works.<br><br>BlueLizard<br>]]>
   </description>
   <pubDate>Thu, 24 Mar 2005 16:14:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5931&amp;title=using-property-grid-in-c#5931</guid>
  </item> 
  <item>
   <title><![CDATA[Using Property Grid in C# : I finally got back in front of...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5289&amp;title=using-property-grid-in-c#5289</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=260">Boyd</a><br /><strong>Subject:</strong> 1831<br /><strong>Posted:</strong> 22 February 2005 at 12:18pm<br /><br /><P>I finally got back in front of a PC with Codejock installed, so here's an update about detecting a value change in C#.</P><P>Indeed, the 'item' that was changed is exposed in the event args.&nbsp; An event handler might look like the following:</P><P><table width="99%"><tr><td><pre class="BBcode">private void axPropertyGrid_ValueChanged(object sender, AxXtremePropertyGrid._DPropertyGridEvents_ValueChangedEvent e)<BR>{<BR>&nbsp;&nbsp;&nbsp; Console.WriteLine("Value Changed for " + e.item.Caption);<BR>}</pre></td></tr></table></P><span style="font-size:10px"><br /><br />Edited by Boyd</span>]]>
   </description>
   <pubDate>Tue, 22 Feb 2005 12:18:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5289&amp;title=using-property-grid-in-c#5289</guid>
  </item> 
  <item>
   <title><![CDATA[Using Property Grid in C# : The ValueChanged event in VB6...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5270&amp;title=using-property-grid-in-c#5270</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=280">ianp</a><br /><strong>Subject:</strong> 1831<br /><strong>Posted:</strong> 22 February 2005 at 3:27am<br /><br /><P>The ValueChanged event in VB6 should be:</P><P><table width="99%"><tr><td><pre class="BBcode">Private Sub PropertyGrid1_ValueChanged(ByVal Item As XtremePropertyGrid.IPropertyGridItem)</P><P>End Sub</pre></td></tr></table></P>]]>
   </description>
   <pubDate>Tue, 22 Feb 2005 03:27:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5270&amp;title=using-property-grid-in-c#5270</guid>
  </item> 
  <item>
   <title><![CDATA[Using Property Grid in C# : I don&amp;#039;t have the documents...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5262&amp;title=using-property-grid-in-c#5262</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=260">Boyd</a><br /><strong>Subject:</strong> 1831<br /><strong>Posted:</strong> 21 February 2005 at 6:39pm<br /><br />I don't have the documents in front of me right now, but I believe the EventArgs for the 'ValueChanged' event will include a reference to the item that was modified.]]>
   </description>
   <pubDate>Mon, 21 Feb 2005 18:39:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5262&amp;title=using-property-grid-in-c#5262</guid>
  </item> 
  <item>
   <title><![CDATA[Using Property Grid in C# : I am using the property grid in...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5257&amp;title=using-property-grid-in-c#5257</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1001">lpereira</a><br /><strong>Subject:</strong> 1831<br /><strong>Posted:</strong> 21 February 2005 at 4:52pm<br /><br /><P>I am using the property grid in a c#application. I need to be able to validate data that a user enters for a propertygrid item and then notify the user if its invalid data. I added the valuechanged event to my code, however there is no way to identify which item was the one modified. Is there a way to do this?</P><P>Thanks.</P>]]>
   </description>
   <pubDate>Mon, 21 Feb 2005 16:52:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1831&amp;PID=5257&amp;title=using-property-grid-in-c#5257</guid>
  </item> 
 </channel>
</rss>