Ejemplo n.º 1
0
        public Annihilator_Window_Bindable_Resources_Base(Font_Size_Type _Font_Size_Type, Colour_Palette_Type _Colour_Palette_Type)
        {
            Font_Size_Type = _Font_Size_Type;

            Colour_Palette_Type = _Colour_Palette_Type;

            Set_Font_Size_Type();
        }
 /// <summary>
 /// Constructs new Options class reading and setting resorcess for MainWindow .
 /// </summary>
 public Options_Storage(Calculator_Mode calculator_Mode, Calculation_Method calculation_Method,
                        double intitial_Height, double intial_Width, Number_Notation number_Notation, string comma_Type,
                        Font_Size_Type font_Size_Type, Colour_Palette_Type colour_Palette_Type, sbyte numeral_System_Code, Languages current_Language)
     : this(calculator_Mode, calculation_Method, intitial_Height, intial_Width, number_Notation, font_Size_Type, colour_Palette_Type)
 {
     Comma_Type          = comma_Type;
     Numeral_System_Code = numeral_System_Code;
     Current_Language    = current_Language;
     //set_language
 }
 public Options_Storage(Calculator_Mode calculator_Mode, Calculation_Method calculation_Method,
                        double intitial_Height, double intial_Width, Number_Notation number_Notation,
                        Font_Size_Type font_Size_Type, Colour_Palette_Type colour_Palette_Type)
 {
     Calculator_Mode     = calculator_Mode;
     Calculation_Method  = calculation_Method;
     Initial_Height      = intitial_Height;
     Initial_Width       = intial_Width;
     Number_Notation     = number_Notation;
     Font_Size_Type      = font_Size_Type;
     Colour_Palette_Type = colour_Palette_Type;
 }