Click here to Skip to main content
15,891,942 members
Articles / Programming Languages / C#

XPanderControls

Rate me:
Please Sign up or sign in to vote.
4.93/5 (106 votes)
27 Nov 2008CPOL3 min read 283.8K   29.2K   378  
Outlook 2007 styled expandable and collapsible panels and panel collections for grouping collections of controls.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Globalization;
using System.Threading;

namespace BSE.Windows.Test
{
	public partial class CCountrySelectionForm : Form
	{
		public CCountrySelectionForm()
		{
			InitializeComponent();

			m_cboCountryList.SelectedItem = BSE.Windows.Test.Properties.Settings.Default.Language;
		}

		private void CboCountryListSelectedIndexChanged(object sender, EventArgs e)
		{
			if (m_cboCountryList.SelectedIndex != -1)
			{
				string strCulture = m_cboCountryList.SelectedItem as string;

				CultureInfo selectedCulture = new CultureInfo(strCulture);
                Thread.CurrentThread.CurrentCulture = selectedCulture;
                Thread.CurrentThread.CurrentUICulture = selectedCulture;
			}
		}
	}
}

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
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions