C#圖片切割、圖片緊縮、縮略圖生成代碼匯總。本站提示廣大學習愛好者:(C#圖片切割、圖片緊縮、縮略圖生成代碼匯總)文章只能為提供參考,不一定能成為您想要的結果。以下是C#圖片切割、圖片緊縮、縮略圖生成代碼匯總正文
假如不消VS的WPF項目模板,若何手工創立一個WPF法式呢?我們來模擬WPF模板,創立一個最簡略的WPF法式。
第一步:文件——新建——項目——空項目,創立一個空項目。
第二步:添加援用,PresentationFramework,PresentationCore,WindowsBase,System,System.Xaml,這幾個是WPF的焦點dll。
第三步:在項目上右鍵添加新建項,添加兩個“xml文件”,分離定名為App.xaml和MainWindow.xaml。可以看出,xaml文件其實就是xml文件。
第四步:同第二步,添加兩個代碼文件,即空白c#代碼文件,分離定名為App.xaml.cs和MainWindow.xaml.cs。可以看到,這兩個文件主動釀成第二步生成的兩個文件的code-behind文件。
第五步:添加Xaml和C#代碼:
App.xaml和MainWindow.xaml中刪除主動生成的xml文件頭,分離添加以下Xaml標志:
<Application x:Class="WpfApp.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="MainWindow.xaml"> <Application.Resources> </Application.Resources> </Application>
<Window x:Class="WpfApp.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> </Grid> </Window>
App.xaml.cs和MainWindow.xaml.cs平分別添加相似以下的代碼:
using System.Windows; namespace WpfApp { /// <summary> /// App.xaml 的交互邏輯 /// </summary> public partial class App : Application { } }
using System.Windows; namespace WpfApp { /// <summary> /// MainWindow.xaml 的交互邏輯 /// </summary> public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } } }
第六步:假如此時編譯就會報錯,提醒沒有找到Main函數進口,這個Main函數其實不消本身添加,體系會主動生成的。翻開App.xaml的文件屬性,將生成操作由Page改成ApplicationDefinition。
第七步:此時應當曾經可以正常運轉了,體系默許輸入是掌握台運用法式,可以翻開項目屬性頁,將輸入類型改成Windows運用法式。
至此,一個模擬VS的WPF項目模板的最簡略的WPF法式就OK了。
以上就是本文的全體內容,願望對年夜家的進修有所贊助。