2

いくつかの共通機能を持ついくつかの WPFUserControlクラスを作成したいと思います。このため、から派生する新しい基本クラスからクラスを派生させたいと思いますUserControl

私の問題は、私の C# クラスが定義されており、新しい基本クラスからではなくpartial、他の部分が自動的に生成されることです。の代わりに、Visual Studio で基本クラスから部分クラスを派生させることはできますか?derivesUserControlUserControl

4

1 に答える 1

8

確かに - ユーザー コントロールのベース コールとして機能するクラスを作成します。

public class BaseUserControl : UserControl
{
    //TODO: Add your common functionality
}

次に、ユーザー コントロールを作成し、ルート宣言を変更して基本クラスを参照します。

<controls:BaseUserControl x:Class="WpfApplication2.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:controls="clr-namespace:WpfApplication2"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <Grid>

    </Grid>
</controls:BaseUserControl>

部分クラスも一致するように変更します。

public partial class UserControl1 : BaseUserControl
{
    public UserControl1()
    {
        InitializeComponent();
    }
}
于 2012-12-04T13:24:38.067 に答える