共通の機能を持つ複数の xaml ページがあり、それらを使用するために単一の .cs ファイルを作成する必要があります。そこで、.xaml の .cs 内のすべてのコードにコメントを付け、「テスト」ページの機能を処理する新しい .cs ファイルを作成しました。
ここで答えに従いましたが、エラーが発生しています:
"The name 'InitializeComponent' does not exist in the current context "
としても:
The type 'local:MainCode' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
これが私がしたことです:
私の .xaml ページで:
<**local:MainCode** x:Class="SilverlightApp1.Common.Test"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
**xmlns:local="clr-namespace:SilverlightApp1.Common**"
そして私のコードページで:
名前空間 SilverlightApp1.Common {
public class MainCode: UserControl { public MainCode() { } public partial class Test: MainCode { public Test() { InitializeComponent(); } } } }
問題を指摘してもらえますか?