WPF自定义嵌入弹框控件,支持内容标题自定义

最近为了实现WPF中弹框组件写了一个小例子:

组件要求:

1.自定义标题

2自定义标题颜色

3提供关闭按钮,

4.弹框内容可由调用方自行嵌入

xaml代码

             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:WpfApp1.Controls"
             MouseLeftButtonDown="UserControl_MouseLeftButtonDown"
             MouseLeftButtonUp="UserControl_MouseLeftButtonUp"
             MouseMove="UserControl_MouseMove" Height="142" Width="112">
   
       
   

   
       
           
               
               
           

           
           
               
                                                   Foreground="White" FontWeight="Bold" Margin="5" Width="46"/>
                   

你可能感兴趣的:(工具,wpf,ui)