public UiEncodingWindow() { #region Construct WindowStartupLocation = WindowStartupLocation.CenterScreen; ResizeMode = ResizeMode.CanMinimize; Width = 1024; Height = 768; UiGrid root = UiGridFactory.Create(4, 1); { root.RowDefinitions[0].Height = GridLength.Auto; root.RowDefinitions[2].Height = GridLength.Auto; root.RowDefinitions[3].Height = GridLength.Auto; _comboBox = UiComboBoxFactory.Create(); { _comboBox.HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch; _comboBox.Margin = new Thickness(3); _comboBox.DisplayMemberPath = "DisplayName"; _comboBox.SelectionChanged += OnComboBoxItemChanged; root.AddUiElement(_comboBox, 0, 0); } _editViewport = new UiDxViewport(); { _editViewport.HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch; _editViewport.VerticalAlignment = VerticalAlignment.Stretch; _editViewport.DrawSprites += OnEditViewportDrawSprites; _editViewport.DrawPrimitives += OnEditViewportDrawPrimitives; _editViewport.DxControl.Control.MouseDown += OnDxControlElementMouseDown; _editViewport.DxControl.Control.MouseUp += OnDxControlElementMouseUp; _editViewport.DxControl.Control.MouseMove += OnDxControlElementMouseMove; root.AddUiElement(_editViewport, 1, 0); } UiGrid previewGroup = UiGridFactory.Create(2, 2); { previewGroup.RowDefinitions[0].Height = GridLength.Auto; previewGroup.ColumnDefinitions[1].Width = GridLength.Auto; _previewViewport = new UiDxViewport(); { _previewViewport.Height = 200; _previewViewport.HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch; _previewViewport.VerticalAlignment = VerticalAlignment.Stretch; _previewViewport.DrawSprites += OnPreviewViewportDraw; _previewViewport.DxControl.RenderContainer.BackBuffer.BackgroundColor = Colors.Black; previewGroup.AddUiElement(_previewViewport, 0, 0, 2); } UiEncodingLabeledNumber scale = new UiEncodingLabeledNumber("Масштаб:", 200, 100, 400, OnScaleValueChanged); { scale.Value = 100; scale.NumberControl.Increment = 25; previewGroup.AddUiElement(scale, 0, 1); } UiTextBox textBox = UiTextBoxFactory.Create(); { textBox.Text = _previewText; textBox.TextChanged += OnPreviewTextChanged; previewGroup.AddUiElement(textBox, 1, 1); } root.AddUiElement(previewGroup, 2, 0); } _charactersControl = new UiEncodingCharactersControl(); { root.AddUiElement(_charactersControl, 3, 0); } UiButton button = UiButtonFactory.Create("OK"); { button.Width = 70; button.Margin = new Thickness(3); button.HorizontalAlignment = System.Windows.HorizontalAlignment.Right; button.Click += (s, a) => DialogResult = true; root.AddUiElement(button, 3, 0); } } Content = root; _editViewport.DxControl.RenderContainer.Reseted += ResetBurshes; ResetBurshes(_editViewport.DxControl.RenderContainer); Thread movingThread = new Thread(MovingThread); movingThread.Start(); Activated += OnWindowActivated; Closing += (s, e) => ClosingEvent.Set(); Closing += OnWindowClosing; #endregion }
public GameSettingsControl() { SetCols(2); SetRows(9); Width = 250; VerticalAlignment = VerticalAlignment.Top; HorizontalAlignment = HorizontalAlignment.Left; Margin = new Thickness(5); DataContext = this; _info = InteractionService.LocalizatorEnvironment.Provide(); InteractionService.LocalizatorEnvironment.InfoProvided += OnLocalizatorEnvironmentProvided; LinearGradientBrush backgroundStroke = new LinearGradientBrush { EndPoint = new Point(0.5, 1), StartPoint = new Point(0.5, 0), RelativeTransform = new RotateTransform(115, 0.5, 0.5), GradientStops = new GradientStopCollection { new GradientStop(Color.FromArgb(0xff, 0x61, 0x61, 0x61), 0), new GradientStop(Color.FromArgb(0xff, 0xF2, 0xF2, 0xF2), 0.504), new GradientStop(Color.FromArgb(0xff, 0xAE, 0xB1, 0xB1), 1) } }; backgroundStroke.Freeze(); LinearGradientBrush backgroundFill = new LinearGradientBrush { MappingMode = BrushMappingMode.RelativeToBoundingBox, StartPoint = new Point(0.5, 1.0), EndPoint = new Point(0.5, -0.4), GradientStops = new GradientStopCollection { new GradientStop(Color.FromArgb(0xBB, 0x44, 0x71, 0xc1), 0), new GradientStop(Color.FromArgb(0xBB, 0x28, 0x36, 0x65), 1) } }; backgroundFill.Freeze(); Rectangle backround = AddUiElement(new Rectangle { Stroke = backgroundStroke, Fill = backgroundFill, StrokeThickness = 5 }, 0, 0, 9, 2); InverseBoolConverter inverseBoolConverter = new InverseBoolConverter(); Thickness rowMargin = new Thickness(0, 8, 0, 3); const string screenGroup = "Отображение:"; AddUiElement(UiTextBlockFactory.Create(screenGroup), 0, 0, 0, 2).Margin = rowMargin; AddUiElement(UiRadioButtonFactory.Create(screenGroup, "Экран", true), 1, 0).SetBinding(ToggleButton.IsCheckedProperty, new Binding("IsFullScreen") { Mode = BindingMode.TwoWay }); AddUiElement(UiRadioButtonFactory.Create(screenGroup, "Окно", false), 1, 1).SetBinding(ToggleButton.IsCheckedProperty, new Binding("IsFullScreen") { Mode = BindingMode.TwoWay, Converter = inverseBoolConverter }); const string resolutionGroup = "Разрешение:"; AddUiElement(UiTextBlockFactory.Create(resolutionGroup), 2, 0, 0, 2).Margin = rowMargin; AddUiElement(UiRadioButtonFactory.Create(resolutionGroup, "1920x1080", true), 3, 0).SetBinding(ToggleButton.IsCheckedProperty, new Binding("IsFullHd") { Mode = BindingMode.TwoWay }); AddUiElement(UiRadioButtonFactory.Create(resolutionGroup, "1280x720", false), 3, 1).SetBinding(ToggleButton.IsCheckedProperty, new Binding("IsFullHd") { Mode = BindingMode.TwoWay, Converter = inverseBoolConverter }); const string voiceGroup = "Озвучка:"; AddUiElement(UiTextBlockFactory.Create(voiceGroup), 4, 0, 0, 2).Margin = rowMargin; AddUiElement(UiRadioButtonFactory.Create(voiceGroup, "Японская", true), 5, 0).SetBinding(ToggleButton.IsCheckedProperty, new Binding("IsNihonVoice") { Mode = BindingMode.TwoWay }); AddUiElement(UiRadioButtonFactory.Create(voiceGroup, "Английская", false), 5, 1).SetBinding(ToggleButton.IsCheckedProperty, new Binding("IsNihonVoice") { Mode = BindingMode.TwoWay, Converter = inverseBoolConverter }); UiCheckBox switchButtons = AddUiElement(UiCheckBoxFactory.Create("Поменять кнопки X/O", null), 6, 0, 0, 2); switchButtons.Margin = rowMargin; switchButtons.IsThreeState = true; switchButtons.SetBinding(ToggleButton.IsCheckedProperty, new Binding("SwitchButtons") { Mode = BindingMode.TwoWay }); AddUiElement(UiTextBlockFactory.Create("MSAA:"), 7, 0).Margin = rowMargin; UiComboBox antiAliasing = AddUiElement(UiComboBoxFactory.Create(), 8, 0); antiAliasing.ItemStringFormat = "x{0}"; antiAliasing.ItemsSource = new[] { 2, 4, 8, 16 }; antiAliasing.SelectedIndex = 3; antiAliasing.SetBinding(Selector.SelectedItemProperty, new Binding("AntiAliasing") { Mode = BindingMode.TwoWay }); antiAliasing.Margin = new Thickness(0, 0, 0, 8); AddUiElement(UiTextBlockFactory.Create("Тени:"), 7, 1).Margin = rowMargin; UiComboBox shadows = AddUiElement(UiComboBoxFactory.Create(), 8, 1); shadows.ItemStringFormat = "{0}x{0}"; shadows.ItemsSource = new[] { 512, 1024, 2048, 4096, 8192 }; shadows.SelectedIndex = 1; shadows.SetBinding(Selector.SelectedItemProperty, new Binding("ShadowResolution") { Mode = BindingMode.TwoWay }); shadows.Margin = new Thickness(0, 0, 0, 8); foreach (FrameworkElement child in Children) { if (!ReferenceEquals(child, backround)) { child.Margin = new Thickness(child.Margin.Left + 8, child.Margin.Top, child.Margin.Right + 8, child.Margin.Bottom); } TextBlock textblock = child as TextBlock; if (textblock != null) { textblock.Foreground = Brushes.WhiteSmoke; textblock.FontWeight = FontWeight.FromOpenTypeWeight(500); continue; } Control control = child as Control; if (control != null && !(control is ComboBox)) { control.Foreground = Brushes.WhiteSmoke; } } }