Exemple #1
0
        /// <summary>
        /// 헤드라인 클릭
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void lblHeadline_Click(object sender, EventArgs e)
        {
            if (this.currentOrderInfo.RefType != OrderReferenceType.SWR)
            {
                return;
            }

            if (this.currentOrderInfo.Tag == null)
            {
                return;
            }
            SWRProfile profile = this.currentOrderInfo.Tag as SWRProfile;

            if (profile == null)
            {
                return;
            }

            SWRWarningItemDetailForm swrDetailForm = new SWRWarningItemDetailForm(profile);

            swrDetailForm.Show();
        }