Header Ads Widget

Ticker

6/recent/ticker-posts

RDManager

<fw:AcrylicWindow x:Class="RDManager.MainWindow"

                  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

                  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

                  xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

                  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

                  xmlns:fw="clr-namespace:SourceChord.FluentWPF;assembly=FluentWPF"

                  mc:Ignorable="d"

                  Title="RDP Manager"

                  Width="1200"

                  Height="720"

                  ResizeMode="CanResize"

                  WindowStartupLocation="CenterScreen"

                  Background="{DynamicResource AcrylicBackgroundBrush}">


    <Grid Margin="10">

        <DockPanel>

            <TextBlock Text="RDP Manager"

                       FontSize="22"

                       FontWeight="Bold"

                       Foreground="White"

                       Margin="10,5" />

        </DockPanel>

    </Gri

d>

</fw:AcrylicWindow>



using SourceChord.FluentWPF;

using System.Windows;


namespace RDManager

{

    public partial class MainWindow : AcrylicWindow

    {

        public MainWindow()

        {

            InitializeComponent();

       

 }

    }

}

Post a Comment

0 Comments