设置内容边框的圆角半径

时间:2012-06-27 12:47:01

标签: c# .net wpf winapi cornerradius

我希望有一个窗口,内容边框的边框半径为5.正如图片所示:

enter image description here

如何使用C#和WPF执行此操作?有没有办法用Windows API做到这一点?

2 个答案:

答案 0 :(得分:5)

WPF在标准操作系统窗口中呈现,如果您需要更改该样式,则必须更改所谓的Windows chrome。基本是创建一个透明的托管窗口,并使用WPF在其中绘制所有内容,以便您可以驱动任何您想要的,当然还有角落半径,have a look here for an exampleSomething more complete in this article。 如果您想自己搜索,关键字 wpf custom chrome 会有所帮助。

答案 1 :(得分:0)

我找到了如何做这项工作:

首先我需要WindowsAPICodePack,我从http://archive.msdn.microsoft.com/WindowsAPICodePack/下载 下载后,我提取它并在/ binaries文件夹中找到必要的DLL。我需要两个DLL:

  

Microsoft.WindowsAPICodePack.dll

     

Microsoft.WindowsAPICodePack.Shell.dll

然后我在Visual Studio(.NET 3.5)中创建了一个WPF应用程序,并在我的应用程序中添加了这两个dll

  

右键单击解决方案资源管理器选项卡中的引用>添加参考

然后我更改了MainWindow XAML代码:

<WindowsAPICodePackShell:GlassWindow x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:WindowsAPICodePackPresentation="clr-namespace:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation;assembly=Microsoft.WindowsAPICodePack.Shell"
xmlns:WindowsAPICodePackShell="clr-namespace:Microsoft.WindowsAPICodePack.Shell;assembly=Microsoft.WindowsAPICodePack.Shell"
Title="WPF AeroGlass Demo" Height="300" Width="300" Loaded="GlassWindow_Loaded">
<Border CornerRadius="10" Background="Gray"></Border>
</WindowsAPICodePackShell:GlassWindow>

我的MainWindow.xaml.cs代码:


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 Microsoft.WindowsAPICodePack.Shell;

namespace WpfApplication1
{
    /// 
    /// Interaction logic for MainWindow.xaml
    /// 
    public partial class MainWindow : GlassWindow
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void GlassWindow_Loaded(object sender, RoutedEventArgs e)
        {
            SetAeroGlassTransparency();
        }
    }
}

当我运行应用程序时: enter image description here