Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7398783
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T03:54:50+00:00 2026-05-29T03:54:50+00:00

My program has to have one color scheme for daylight hours and a darker

  • 0

My program has to have one color scheme for daylight hours and a darker one for night time hours. I have defined the TimesOfDay enum:

public enum TimesOfDay { DayTime, NightTime }

I have a custom control derived from window called CarSystemDialog:

    public class CarSystemDialog : Window {

    public static readonly DependencyProperty TimeOfDayModeProperty =
        DependencyProperty.Register( "TimeOfDayMode", typeof( TimesOfDay ), typeof( CarSystemDialog ),
                                     new FrameworkPropertyMetadata( TimesOfDay.DayTime,
                                         FrameworkPropertyMetadataOptions.AffectsRender,
                                         new PropertyChangedCallback( OnTimeOfDayInvalidated ) ) );

    public TimesOfDay TimeOfDayMode {
        get { return (TimesOfDay) GetValue( TimeOfDayModeProperty ); }
        set { SetValue( TimeOfDayModeProperty, value ); }
    }

    static CarSystemDialog() {
        DefaultStyleKeyProperty.OverrideMetadata( typeof( CarSystemDialog ), new FrameworkPropertyMetadata( typeof( CarSystemDialog ) ) );
    }

    private void Grid_MouseLeftButtonDown( object sender, MouseButtonEventArgs e ) {
        DragMove();
    }

    private static void OnTimeOfDayInvalidated( DependencyObject d, DependencyPropertyChangedEventArgs e ) {
        // Convert the DependencyObject into an AlarmDisplayer instance
        CarSystemDialog dialog = (CarSystemDialog) d;

        // Let the instance handle the event.
        dialog.OnTimeOfDayModeChanged( d, e );
    }

    public override void OnApplyTemplate() {
        base.OnApplyTemplate();
        Grid grid = (Grid) Template.FindName( "PART_TitleBar", this );
        grid.MouseLeftButtonDown += Grid_MouseLeftButtonDown;
    }

    public virtual void OnTimeOfDayModeChanged( object sender, DependencyPropertyChangedEventArgs e ) {

    }
}

This compiles fine.

I have a UserControl class that descends from CarSystemDialog:

public partial class SettingsDialog : CarSystemDialog {

    public static readonly DependencyProperty VolumeProperty =
        DependencyProperty.Register( "Volume", typeof( double ), typeof( SettingsDialog ),
                                     new PropertyMetadata( 0.5, new PropertyChangedCallback( OnVolumeInvalidated ) ) );

    protected App Application { get; set; }

    public double Volume {
        get { return (double) GetValue( VolumeProperty ); }
        set { SetValue( VolumeProperty, value ); }
    }

    public SettingsDialog() 
        : base() {
        InitializeComponent();

        // Initialize the Application property
        Application = (App) App.Current;

        // Get the current value of the Volume property
        Volume = (double) Application.CurrentUserProfile.Volume;
    }

    private void AdvancedButton_Click( object sender, RoutedEventArgs e ) {
        Application.CurrentUserProfile.Save();
        Close();
        MainWindow mainWindow = (MainWindow) Application.MainWindow;
        mainWindow.ReadsDisplay.Visibility = Visibility.Collapsed;
        mainWindow.AdvancedSettingsEditor.Visibility = Visibility.Visible;
        e.Handled = true;
    }

    private void CloseButton_Click( object sender, RoutedEventArgs e ) {
        MainWindow window = (MainWindow) Application.MainWindow;
        window.Volume = Volume;
        Application.ConfigurationFile.Save();
        Close();
        e.Handled = true;
    }

    private void DayButton_Click( object sender, RoutedEventArgs e ) {
        MainWindow window = (MainWindow) Application.MainWindow;
        window.DayButton_Click( sender, e );
        e.Handled = true;
    }

    private void Grid_MouseLeftButtonDown( object sender, MouseButtonEventArgs e ) {
        DragMove();
        e.Handled = true;
    }

    public override void OnTimeOfDayModeChanged( object sender, DependencyPropertyChangedEventArgs e ) {
        throw new NotImplementedException();
    }

    private void OnVolumeChanged( object sender, DependencyPropertyChangedEventArgs e ) {
        Application.CurrentUserProfile.Volume = (double) e.NewValue;
    }

    private static void OnVolumeInvalidated( DependencyObject d, DependencyPropertyChangedEventArgs e ) {
        SettingsDialog window = (SettingsDialog) d;
        window.OnVolumeChanged( window, e );
    }

    private void NightButton_Click( object sender, RoutedEventArgs e ) {
        MainWindow window = (MainWindow) Application.MainWindow;
        window.NightButton_Click( sender, e );
        e.Handled = true;
    }

    private void SettingsDialog_Closed( object sender, EventArgs e ) {
        Application.CurrentUserProfile.Save();
    }
}

}

All of the code in this class compiles fine, but at run time, when the user control is instantiated, I get the following error:

The type initializer for “MyProject.MyDialog” threw an exception:
“TimeOfDayMode” property was already registered by “MyDialog”.

What is the cause of this error? How do I fix it?

Thanks

Tony

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T03:54:51+00:00Added an answer on May 29, 2026 at 3:54 am

    I found the problem. In another class, called CarSystemWindow, I defined the same property by copying & pasting the definition of the property from CarSystemDialog. I forgot to change the type name in this copy of the property from CarSystemDialog to CarSystemWindow.

    I corrected the name and now it’s fine.

    Thanks anyway.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a C program which has a function call that is defined in
Bckground I have a networked application written in C#. my server program has a
I have program that has a variable that should never change. However, somehow, it
I have a program which has a text box that the user can edit.
I have a PHP program that has been written keeping in mind a single
I have a C program which has always used hard coded define statements for
I have a task killer program that has a listbox of current running processes.
I have a .NET 2.0 program that has a reference to Interop.WIA.dll (.NET), which
Okay. I have completed my first python program.It has around 1000 lines of code.
I have a program in Octave that has a loop - running a function

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.