본문 바로가기
프로그래밍/UWP | WPF

UWP 버튼에 마우스 커서 올리면(mouse hover) 안보임 해결방법

by 남생 namsaeng 2022. 5. 24.
반응형

1. Microsoft.UI.Xaml 설치 확인

  • [솔루션 탐색기] > [참조] 오른쪽 클릭 > [NuGet 패키지 관리] > [설치됨] 탭에서 확인
  • 설치가 안되었다면 [찾아보기] 탭에서 Microsoft.UI.Xaml를 검색하여 설치

 

2. 애플리케이션에 반영

  • [솔루션 탐색기] > [App.xaml]에서 <XamlControlResources xmlns="using:Microsoft.UI.Xaml.Controls" /> 추가

 

<App.xaml 소스코드>

<Application
    x:Class="OpCtrl_Local_GUI.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:OpCtrl_Local_GUI">
    <Application.Resources>
        <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
    </Application.Resources>
</Application>

 

 

3. 실행결과

 

UWP button disappear when mouse hover on the button
UWP button disappear when mouse hover on the button

 

반응형

댓글