개정판 81908c01
PageStorage Null 체크 후 Clear
Change-Id: Ic2ecdf79c316531cbf15ec3b51451862427549d3
KCOM/App.xaml.cs | ||
---|---|---|
120 | 120 |
|
121 | 121 |
protected override void OnExit(ExitEventArgs e) |
122 | 122 |
{ |
123 |
App.PageStorage.Clear(); |
|
123 |
try |
|
124 |
{ |
|
125 |
if (App.PageStorage != null) |
|
126 |
{ |
|
127 |
App.PageStorage.Clear(); |
|
128 |
} |
|
129 |
} |
|
130 |
catch (Exception) |
|
131 |
{ |
|
132 |
} |
|
124 | 133 |
|
125 | 134 |
base.OnExit(e); |
126 | 135 |
} |
내보내기 Unified diff