How to set the name of DXRibbonWindow in its center

I am using DXRibbonwindow as follows:

 <dxr:DXRibbonWindow x:Class="MyNameSpace.MyRibbonWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:dxn="http://schemas.devexpress.com/winfx/2008/xaml/navbar" xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars" xmlns:dxd="http://schemas.devexpress.com/winfx/2008/xaml/docking" xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol" xmlns:dxr="http://schemas.devexpress.com/winfx/2008/xaml/ribbon" xmlns:dxmvvm="http://schemas.devexpress.com/winfx/2008/xaml/mvvm" SnapsToDevicePixels="True" WindowStartupLocation="CenterScreen" WindowState="Maximized" Title="title"> <Grid> ... </Grid> </dxr:DXRibbonWindow> 

enter image description here I want the title to be in the middle of the title bar of the window, but this is not how I can do it? I am using DevExpress 14.2.5.

+5
source share
2 answers

This problem arose in version 14.5 of DEVExpress, I upgrade its version to the latest 17.1, then the problem was solved, thanks to the DevExpress developer.

0
source

Override the default management template using Visual Studio Blend or as it explained here I would recommend using Blend see example and difference and VS editors

+1
source

Source: https://habr.com/ru/post/1270261/


All Articles