Click here to Skip to main content
15,893,381 members
Articles / Programming Languages / C#

XP theme aware TreeView control which supports checkbox and radio button nodes.

Rate me:
Please Sign up or sign in to vote.
4.70/5 (21 votes)
10 Oct 2003CPOL5 min read 261.4K   3.9K   112  
Internet Explorer advanced settings tree view clone. Supports checkbox and radio button nodes.
#pragma once


namespace System
{ namespace Windows
{ namespace Forms 
{ namespace Themes
{
	[System::Reflection::DefaultMember("Item")]
	__gc public __sealed class StatesCollection : public IThemeItemCollection
	{
	class WindowsCollection
	{
	public private:
		WindowsCollection(void);

	private:
		~WindowsCollection(void);

	public:
		__property WindowTheme* get_Item( int index );
		__property WindowTheme* get_Item( String* partName );


		__property int get_Count();
		__property System::Object* get_SyncRoot(){ return this; }
		__property bool get_IsSynchronized(){ return false; }

		System::Collections::IEnumerator* GetEnumerator(){ return new ThemeItemEnumerator( this ); }
		void CopyTo( System::Array* array, int startIndex );

		[System::ComponentModel::EditorBrowsable(EditorBrowsableState::Never)]
		System::Object* GetEnumeratorItem( int index ){ return get_Item( index ); }

	};
}
}
}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Switzerland Switzerland
My interest is in the future because I am going to spend the rest of my life there. (Charles Kettering)

Biography

  • 1996 - 1998 PC Board PPL, HTML, DHTML, Javascript and ASP
  • 1999 - 2001 coding Centura against Sql Database (SqlBase,MSSQL,Oracle)
  • 2002 - 2004 C# Windows Forms
  • 2005 - 2006 C# ASP.NET, Windows Forms
  • 2006 - 2009 C#, WCF, WF, WPF
  • 2010 - 2012 C#, Dynamics CRM, Sharepoint, Silverlight
  • 2013 - 2013 C#, WCF DS (OData), WF, WPF
  • 2014 - 2016 C#, Azure PaaS, Identity, OWIN, OData, Web Api
  • 2017 - now C#, aspnet.core, IdentityServer4, TypeScript & Angular @ Azure IaaS or PaaS

Interests

  • family & friends
  • chilaxing ,)
  • coding

Comments and Discussions