| 285 | } |
| 286 | |
| 287 | winrt::hstring RobocopyViewModel::SizeText() |
| 288 | { |
| 289 | return m_size == 0 ? |
| 290 | L"---" : |
| 291 | ReadableUnitConverter::Size::ToString<wchar_t>(m_size).data(); |
| 292 | } |
| 293 | winrt::event_token RobocopyViewModel::Finished(winrt::Windows::Foundation::EventHandler<winrt::FastCopy::FinishState> const& handler) |
| 294 | { |
| 295 | return m_finishEvent.add(handler); |