4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Generic.xaml内に日本語のコメントを入力する

Posted at

現象#

カスタムコントロールを作るときにできるGeneric.xaml
このファイル内で日本語のコメントを入れると指定されたエンコードに無効な文字がありますというエラーが出てコンパイルできなくなった。

解決#

xaml
<?xml version="1.0" encoding="Shift_JIS"?> ★これを追加
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <!--カスタムTextBox-->
</ResourceDictionary>
4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?