Nuget으로 Meterial Design Themes를 설치 및 구현 후 프로그램을 배포시 오류 처리
다음의 솔루션을 적용하면 MaterialDesignTheme.Wpf.dll을 성공적으로 로드할 수 있게 된다.
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
ShadowAssist.SetShadowDepth(this, ShadowDepth.Depth0);
}
}