개정판 5a9396ae
issue #366: SPPID 변환 - AutoModeling에 IDisposable 구현
Change-Id: Ie0ec49757b6dfdedce7b2f5f35d44e7e8ce7b8ed
DTI_PID/SPPIDConverter/ConverterForm.cs | ||
---|---|---|
559 | 559 |
} |
560 | 560 |
} |
561 | 561 |
|
562 |
/// <summary> |
|
563 |
/// 선택한 도면의 정보를 로딩한다 |
|
564 |
/// </summary> |
|
565 |
/// <param name="sender"></param> |
|
566 |
/// <param name="e"></param> |
|
562 | 567 |
private void btnRun_Click(object sender, EventArgs e) |
563 | 568 |
{ |
564 | 569 |
Project_Info _ProjectInfo = Project_Info.GetInstance(); |
... | ... | |
575 | 580 |
return; |
576 | 581 |
} |
577 | 582 |
|
578 |
_Documents.Clear(); |
|
583 |
this._Documents.Clear();
|
|
579 | 584 |
foreach (int rowHandle in gridViewConverter.GetSelectedRows()) |
580 | 585 |
{ |
581 | 586 |
string _FilePath = gridViewConverter.GetRowCellDisplayText(rowHandle, "colDrawingFilePath"); |
... | ... | |
599 | 604 |
document.SetSPPIDInfo(); |
600 | 605 |
|
601 | 606 |
if (document.SetSPPIDMapping() && document.Enable) |
602 |
_Documents.Add(document); |
|
607 |
this._Documents.Add(document);
|
|
603 | 608 |
} |
604 | 609 |
|
605 | 610 |
DialogResult = DialogResult.OK; |
내보내기 Unified diff