Mini Kabibi Habibi
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using DevExpress.Xpf.Ribbon;
using DevExpress.Xpf.Core;
namespace RibbonDemo {
public partial class RibbonWindow : RibbonDemoModule {
public RibbonWindow() {
InitializeComponent();
}
private void OpenDXWindow() {
SampleDXRibbonWindow Window = new SampleDXRibbonWindow();
Window.Width = this.ActualWidth;
Window.Height = this.ActualHeight;
Window.IsAeroMode = true;
Point pos = this.PointToScreen(new Point());
Window.Left = pos.X;
Window.Top = pos.Y;
Window.OwnerDemoModule = this;
Window.ShowDialog();
}
private void Button_Click(object sender, RoutedEventArgs e) {
OpenDXWindow();
}
}
}