TestShadowForm.cs 551 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Runtime.InteropServices;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. using Y.Skin.YoForm.Shadow;
  11. using Y.Utils.WindowsUtils.APIUtils;
  12. namespace Y.Test.Views
  13. {
  14. public partial class TestShadowForm : ShadowForm
  15. {
  16. public TestShadowForm()
  17. {
  18. InitializeComponent();
  19. }
  20. private void TestShadowForm_Load(object sender, EventArgs e)
  21. { }
  22. }
  23. }