Comment : créer un exemple de fichier projet pour une bibliothèque de contrôles personnalisés Windows Presentation Foundation
Mise à jour : novembre 2007
Cet exemple de fichier projet concerne une bibliothèque de contrôles personnalisés Windows Presentation Foundation (WPF), avec un seul contrôle utilisateur, WPFUserControl. Les principaux détails de la configuration incluent :
OutputType. Avec la valeur library.
WPFUserControl.xaml. Fichier XAML déclaré comme un élément Page.
WPFUserControl.xaml.cs. Fichier code-behind déclaré comme un élément Compile.
Vous pouvez réutiliser ou modifier ce fichier projet pour l'adapter à vos besoins, sous réserve que les fichiers que vous référencez se trouvent à l'emplacement de référence. Vous pouvez également avoir un fichier projet pour un contrôle personnalisé généré automatiquement pour vous à l'aide du modèle de projet Bibliothèque de contrôles personnalisés (WPF) dans Microsoft Visual Studio 2005.
Ce fichier projet concerne un projet C# et inclut par conséquent l'élément Import de Microsoft.CSharp.targets. Microsoft Visual Studio 2005 attribue l'extension .csproj aux fichiers projet C#. Un projet Microsoft Visual Basic .NET créé dans Microsoft Visual Studio 2005 doit en principe avoir l'extension .vbproj et inclure l'élément Import de Microsoft.VisualBasic.targets.
Exemple
<Project DefaultTargets="Build" xmlns="https://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<RootNamespace>WPFCustomControlLibrary</RootNamespace>
<AssemblyName>WPFCustomControlLibrary</AssemblyName>
<WarningLevel>4</WarningLevel>
<OutputType>library</OutputType>
<ApplicationVersion>1.0.0.*</ApplicationVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>.\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>false</DebugSymbols>
<Optimize>true</Optimize>
<OutputPath>.\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<Page Include="WPFUserControl.xaml" />
<Compile Include="WPFUserControl.xaml.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<AppDesigner Include="Properties\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildBinPath)\Microsoft.WinFX.targets" />
</Project>