예제 #1
0
파일: Logic.cs 프로젝트: bilalovim/Studio
        public static void OpenEditHeaderCellWindow(EditHeaderCell w, HeaderCell cell, Coords coord)
        {
            w.HeaderField.Text = cell.headerCellHeader;
            w.AlignField.Text = cell.headerCellAlign;
            w.HeightField.Text = cell.headerCellHeight.ToString();
            w.WidthField.Text = cell.headerCellWidth.ToString();
            w.NameField.Text = cell.headerCellName;
            w.FontsizeField.Text = cell.headerCellFontSize.ToString();

            w.col.Text = coord.colCoord.ToString();
            w.row.Text = coord.rowCoord.ToString();

            w.ShowDialog();
        }