锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
556 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Diagnostics;
  5. using System.Linq;
  6. using System.Text;
  7. namespace ICSSoft.Frame.APP
  8. {
  9. public partial class SkinRegistration : Component
  10. {
  11. public SkinRegistration()
  12. {
  13. DevExpress.Skins.SkinManager.Default.RegisterAssembly(typeof(DevExpress.UserSkins.SelfSkin).Assembly);
  14. }
  15. public SkinRegistration(IContainer container)
  16. {
  17. container.Add(this);
  18. InitializeComponent();
  19. }
  20. }
  21. }