ARUP.IssueTracker.Revit.RevitWindow.RevitWindow C# (CSharp) Method

RevitWindow() public method

Constructor
public RevitWindow ( UIApplication _uiapp, ExternalEvent exEvent, ExtOpenView handler ) : System
_uiapp UIApplication
exEvent ExternalEvent
handler ARUP.IssueTracker.Revit.Entry.ExtOpenView
return System
    public RevitWindow(UIApplication _uiapp, ExternalEvent exEvent, ExtOpenView handler)
    {
      InitializeComponent();

      try
      {
        
        m_ExEvent = exEvent;
        m_Handler = handler;
        uiapp = _uiapp;

        mainPan.jiraPan.AddIssueBtn.Click += new RoutedEventHandler(AddIssueJira);
        mainPan.bcfPan.AddIssueBtn.Click += new RoutedEventHandler(AddIssueBCF);

        mainPan.bcfPan.Open3dViewBtn.Click += new RoutedEventHandler(Open3dViewBCF);
        mainPan.jiraPan.Open3dViewBtn.Click += new RoutedEventHandler(Open3dViewJira);
      }

      catch (Exception ex1)
      {
        MessageBox.Show("exception: " + ex1);
      }
      //  mainPan.bcfPan.AddIssueBtn.Click += new RoutedEventHandler(AddIssueBCF);

    }