개정판 944a39ed
Document Items버튼 변경 & Selectedrow 되돌림
Change-Id: I7167834336341ade176c06638b1847cbfbec0ec5
ConvertService/ServiceBase/Markus.Service.StationController/ViewModel/DataBaseItemsModel.cs | ||
---|---|---|
268 | 268 |
if (_SelectFilterConvertList == null) |
269 | 269 |
{ |
270 | 270 |
_SelectFilterConvertList = new ObservableCollection<ConvertPDF>(); |
271 |
|
|
272 |
_SelectFilterConvertList.CollectionChanged += (snd, ect) => |
|
273 |
{ |
|
274 |
System.Diagnostics.Debug.WriteLine($"_SelectFilterConvertList : {_SelectFilterConvertList.Count()}"); |
|
275 |
}; |
|
271 | 276 |
} |
272 | 277 |
return _SelectFilterConvertList; |
273 | 278 |
} |
... | ... | |
1329 | 1334 |
} |
1330 | 1335 |
catch (WebException webException) |
1331 | 1336 |
{ |
1332 |
MessageBox.Show(SelectFilterConvert.FileName + " doesn't exist: " + webException.Message); |
|
1333 |
result = true;
|
|
1337 |
MessageBox.Show(SelectFilterConvertList[0].FileName + " doesn't exist: " + webException.Message);
|
|
1338 |
result = false;
|
|
1334 | 1339 |
} |
1335 | 1340 |
finally |
1336 | 1341 |
{ |
... | ... | |
1478 | 1483 |
SearchTimerOn = true; |
1479 | 1484 |
dispatcherTimer.Tick -= new EventHandler(Timer_Tick); |
1480 | 1485 |
dispatcherTimer.Tick += new EventHandler(SearchTimer_Tick); |
1486 |
|
|
1487 |
FilterConvertSource.Clear(); |
|
1488 |
|
|
1489 |
SearchTimer_Tick(null,new EventArgs()); |
|
1481 | 1490 |
} |
1482 | 1491 |
|
1483 | 1492 |
#endregion |
... | ... | |
1494 | 1503 |
SearchTimerOn = true; |
1495 | 1504 |
dispatcherTimer.Tick -= new EventHandler(Timer_Tick); |
1496 | 1505 |
dispatcherTimer.Tick += new EventHandler(SearchTimer_Tick); |
1506 |
|
|
1507 |
FilterConvertSource.Clear(); |
|
1508 |
|
|
1509 |
SearchTimer_Tick(null, new EventArgs()); |
|
1497 | 1510 |
} |
1498 | 1511 |
|
1499 | 1512 |
#endregion |
... | ... | |
1676 | 1689 |
|
1677 | 1690 |
convertDocumentDialog.Owner = Application.Current.MainWindow; |
1678 | 1691 |
convertDocumentDialog.WindowStartupLocation = WindowStartupLocation.CenterOwner; |
1692 |
convertDocumentDialog.Width = 1000; |
|
1693 |
convertDocumentDialog.Height = 600; |
|
1679 | 1694 |
|
1680 | 1695 |
convertDocumentDialog.ShowDialog(); |
1681 | 1696 |
|
내보내기 Unified diff