"From beginning to end-catering management System"-(III)
1, out of the purpose of this tutorial, on the one hand is to arouse everyone's enthusiasm and enthusiasm for software development, on the other hand, I have some experience and knowledge of software development to share to everyone. This tutorial if you have some help, very honored, if there is inappropriate, but also hope to forgive (do not spray ^_^).
2, this tutorial is only for learning exchange use, strictly prohibited for commercial purposes, in the case of no charge of others, and can mark the source of the tutorial (http://www.cnblogs.com/hfultrastrong/) , you can freely reproduced, Distribute and disseminate this tutorial.
3, if you find that this tutorial has any place to explain the error, you can comment on the blog below, or by email:[email protected] and I get in touch, I will be extremely grateful!
start!
1. Reference assembly: IrisSkin2
2. In the Load event of the login form, write the code:
· The absolute path to the skin file (. ssk) is obtained first, and relative paths can be used if it is the same directory as the program.
· The path is then assigned to the Skinfile property.
• Because we are using skin components in the first form, the remaining open forms will also be rendered using this skin file in the next window (without closing the first form).
#region Load events///<summary>//Load events///</summary>// <param name= "Sender" ></ Param> //<param name= "E" ></param> private void Frm_login_load (object sender, EventArgs e) { //bind skin Sunisoft.IrisSkin.SkinEngine s = new Sunisoft.IrisSkin.SkinEngine (); S.skinfile = @ "C:\Users\Administrator\Desktop\DeepCyan.ssk"; } #endregion
3. Operation Effect:
Skin Components Download :Http://pan.baidu.com/s/1ntoWkzR
skin File Download :Http://pan.baidu.com/s/1ntoWkzR
end!
2. Corresponding video address |
start!
Baidu Cloud: Http://pan.baidu.com/s/1ntoWkzR
end!
1, out of the purpose of this tutorial, on the one hand is to arouse everyone's enthusiasm and enthusiasm for software development, on the other hand, I have some experience and knowledge of software development to share to everyone. This tutorial if you have some help, very honored, if there is inappropriate, but also hope to forgive (do not spray ^_^).
2, this tutorial is only for learning exchange use, is strictly prohibited for commercial purposes, in the case of no other charges, and can mark the source of the tutorial (http://www.cnblogs.com/hfultrastrong/), you can freely reproduced, distributed, Propagate this tutorial.
3, if you find that this tutorial has any place to explain the error, you can comment on the blog below, or by email:[email protected] and I get in touch, I will be extremely grateful!
"From beginning to end-catering management System"-(III)