Shalvin Interests

Showing posts with label WPF Configuring Application Settings. Show all posts
Showing posts with label WPF Configuring Application Settings. Show all posts

Monday, May 2, 2011

WPF Configuring Application Settings

You can access the Project Properties Dialog by selecting ProjectName Properties from Properties menu.
Navige to Setting tab.


private void Window_Loaded(object sender, RoutedEventArgs e)
{
   MessageBox.Show(Properties.Settings.Default.Name);
}