您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關C# 中怎么利用WPF實現一個登錄加載窗體,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
首先在App.xaml中添加HandyControl兩個樣式文件:
<Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml"/> <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources>
另外一個代碼文件是MainWindow.xaml,首先引入HandyControl命名空間
xmlns:hc="https://handyorg.github.io/handycontrol"
代碼確實不多,關鍵代碼不到10行左右
<Window x:Class="CustomControlsHandyOrg.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:local="clr-namespace:CustomControlsHandyOrg" mc:Ignorable="d" xmlns:hc="https://handyorg.github.io/handycontrol" Height="450" Width="300" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" WindowStyle="None"> <Grid Background="#FF222222"> <StackPanel VerticalAlignment="Center"> <hc:Gravatar Id="{Binding Value,ElementName=slider}"/> <TextBlock FontSize="18" Text="DOWNLOADING" Margin="5 15" Foreground="White" HorizontalAlignment="Center"/> <hc:WaveProgressBar Value="{Binding Value,ElementName=slider}" Maximum="100" Background="#FF555555" WaveFill="#ff563380" WaveStroke="#FF5675" WaveThickness="1" Foreground="White"/> <Button Content="STOP" Margin="15" HorizontalAlignment="Stretch" Background="#FF563380" BorderBrush="#FF482480" Foreground="White"/> <hc:PreviewSlider x:Name="slider" Maximum="100" Margin="20"/> </StackPanel> </Grid></Window>
以上就是C# 中怎么利用WPF實現一個登錄加載窗體,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。