Ejemplo n.º 1
0
        private void btnCancel_Click(object sender, EventArgs e)
        {
            if (!this.isUpdate)
            {
                Matrix = null;
            }

            this.Close();
        }
Ejemplo n.º 2
0
        private void MatrixSelectionForm_Load(object sender, EventArgs e)
        {
            lblMessage.Text = "";
            _selectedColumns = new List<CorrelationMatrixColumns>();

            if (Matrix == null)
            {
                Matrix = new CorrelationMatrix();
            }

            loadFeaureLayers();

            if (this.isUpdate) loadSavedValues();
        }
Ejemplo n.º 3
0
 private void btnDeleteTable_Click(object sender, EventArgs e)
 {
     isUpdate = true;
     Matrix = null;
     this.Close();
 }
Ejemplo n.º 4
0
 public MatrixSelectionForm(CorrelationMatrix item)
 {
     InitializeComponent();
     this.Matrix = item;
     this.isUpdate = true;
 }
 public ViewCorrelationMatrixForm(CorrelationMatrix CorrelationMatrix)
 {
     InitializeComponent();
     _correlationMatrix = CorrelationMatrix;
 }