码迷,mamicode.com
首页 > 其他好文 > 详细

窗口图标与背景

时间:2017-12-31 21:11:52      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:files   cimage   back   mic   origin   pat   names   shu   space   

 

技术分享图片
 

图标Icon

Icon="Images/icon.jpg"

背景图Background

<Window.Background>
    <ImageBrush ImageSource="Images/background.jpg"></ImageBrush>
</Window.Background>

完整代码:

<Window x:Class="WpfDemo.WindowIconAndBackground.WindowIconAndBackgroundDemo"
        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:local="clr-namespace:WpfDemo.WindowIconAndBackground"
        mc:Ignorable="d" Icon="Images/icon.jpg"
        Title="WindowIconAndBackgroundDemo" Height="350" Width="600">
    <Window.Background>
        <ImageBrush ImageSource="Images/background.jpg"></ImageBrush>
    </Window.Background>
    <Grid>
        
    </Grid>
</Window>

示例代码

https://github.com/zLulus/NotePractice/tree/dev3/WPF/WpfDemo/WindowIconAndBackground

窗口图标与背景

标签:files   cimage   back   mic   origin   pat   names   shu   space   

原文地址:https://www.cnblogs.com/Lulus/p/8158376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!