PageRenderTime 56ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/CSVSPackageWPFToolWindow/MyControl.cs

#
C# | 24 lines | 19 code | 2 blank | 3 comment | 0 complexity | f94a96677da86204a21dbd382ba8cdcf MD5 | raw file
  1. using System.Security.Permissions;
  2. using System.Windows.Forms;
  3. namespace Company.VSPackageWPFToolWindow
  4. {
  5. /// <summary>
  6. /// Summary description for MyControl.
  7. /// </summary>
  8. public partial class MyControl : UserControl
  9. {
  10. public MyControl()
  11. {
  12. InitializeComponent();
  13. }
  14. public WPFControl WPFControl
  15. {
  16. get
  17. {
  18. return wpfControl1;
  19. }
  20. }
  21. }
  22. }