Initialize() 개인적인 메소드

Displays the applications in the control.
private Initialize ( CertificateIdentifierCollection certificates ) : void
certificates CertificateIdentifierCollection
리턴 void
예제 #1
0
        /// <summary>
        /// Updates the controls after a node is selected.
        /// </summary>
        protected override void SelectNode()
        {
            base.SelectNode();

            if (m_certificateListCtrl != null)
            {
                m_certificateListCtrl.Initialize(SelectedStore, null);
            }
        }
예제 #2
0
        /// <summary>
        /// Updates the controls after a node is selected.
        /// </summary>
        protected override void SelectNode()
        {
            base.SelectNode();

            if (m_certificateListCtrl != null)
            {
                Task.Run(async() => await m_certificateListCtrl.Initialize(SelectedStore, null)).Wait();
            }
        }