@@ -9,8 +9,8 @@ struct SvgView : SvgViewT<SvgView> {
99
1010 SvgView (Microsoft::ReactNative::IReactContext const &context);
1111
12- Windows::UI::Xaml ::FrameworkElement SvgParent () { return m_parent; }
13- void SvgParent (Windows::UI::Xaml ::FrameworkElement const &value);
12+ xaml ::FrameworkElement SvgParent () { return m_parent; }
13+ void SvgParent (xaml ::FrameworkElement const &value);
1414
1515 RNSVG::GroupView Group () { return m_group; }
1616 void Group (RNSVG::GroupView const &value) { m_group = value; }
@@ -48,8 +48,8 @@ struct SvgView : SvgViewT<SvgView> {
4848 Windows::Foundation::Size MeasureOverride (Windows::Foundation::Size const &availableSize);
4949 Windows::Foundation::Size ArrangeOverride (Windows::Foundation::Size const &finalSize);
5050
51- void Panel_Loaded (Windows::Foundation::IInspectable const &sender, Windows::UI::Xaml ::RoutedEventArgs const &args);
52- void Panel_Unloaded (Windows::Foundation::IInspectable const &sender, Windows::UI::Xaml ::RoutedEventArgs const &args);
51+ void Panel_Loaded (Windows::Foundation::IInspectable const &sender, xaml ::RoutedEventArgs const &args);
52+ void Panel_Unloaded (Windows::Foundation::IInspectable const &sender, xaml ::RoutedEventArgs const &args);
5353
5454 void Invalidate ();
5555
@@ -58,10 +58,10 @@ struct SvgView : SvgViewT<SvgView> {
5858 bool m_hasRendered{false };
5959 bool m_isResponsible{false };
6060 Microsoft::ReactNative::IReactContext m_reactContext{nullptr };
61- Windows::UI::Xaml ::FrameworkElement m_parent{nullptr };
61+ xaml ::FrameworkElement m_parent{nullptr };
6262 RNSVG::D2DDevice m_device;
6363 RNSVG::D2DDeviceContext m_deviceContext;
64- Windows::UI::Xaml ::Controls::Image m_image;
64+ xaml ::Controls::Image m_image;
6565 RNSVG::GroupView m_group{nullptr };
6666 hstring m_id{L" " };
6767 float m_minX{0 .0f };
@@ -74,14 +74,14 @@ struct SvgView : SvgViewT<SvgView> {
7474 RNSVG::SVGLength m_height{};
7575 std::string m_align{" " };
7676 RNSVG::MeetOrSlice m_meetOrSlice{RNSVG::MeetOrSlice::Meet};
77- Windows::UI::Color m_currentColor{Windows::UI:: Colors::Black ()};
77+ Windows::UI::Color m_currentColor{Colors::Black ()};
7878
7979 Windows::Foundation::Collections::IMap<hstring, RNSVG::IRenderable> m_templates{
8080 winrt::single_threaded_map<hstring, RNSVG::IRenderable>()};
8181 Windows::Foundation::Collections::IMap<hstring, RNSVG::BrushView> m_brushes{
8282 winrt::single_threaded_map<hstring, RNSVG::BrushView>()};
83- Windows::UI::Xaml ::FrameworkElement::Loaded_revoker m_panelLoadedRevoker{};
84- Windows::UI::Xaml ::FrameworkElement::Unloaded_revoker m_panelUnloadedRevoker{};
83+ xaml ::FrameworkElement::Loaded_revoker m_panelLoadedRevoker{};
84+ xaml ::FrameworkElement::Unloaded_revoker m_panelUnloadedRevoker{};
8585};
8686} // namespace winrt::RNSVG::implementation
8787
0 commit comments