Пример #1
0
        private void AddButton_Click(object sender, RoutedEventArgs e)
        {
            string name = NewUniformName;
            GLType type = (GLType)typeComboBox.SelectedItem;

            NewUniform = UniformMaker.Make(type, name);
            Close();
        }
Пример #2
0
        // ==================================================================================================
        // OTHER
        // ==================================================================================================

        public AddUniformWindow()
        {
            InitializeComponent();

            this.DataContext = this;

            NewUniform         = null;
            NameValidationRule = new OpenGLIdentifierValidationRule();

            ICollection <GLType> supportedTypes = UniformMaker.GetSupportedTypes();

            typeComboBox.ItemsSource   = supportedTypes;
            typeComboBox.SelectedIndex = 0;
        }