OutlookBar for WPF/Silverlight
手順 1:アプリケーションの作成
クイックスタート > 手順 1:アプリケーションの作成

この手順では、Visual Studio で、OutlookBar for WPF/Silverlight を使用して、WPF アプリケーションを作成します。

プロジェクトをセットアップし、C1OutlookBar コントロールをアプリケーションに追加するには、次の手順に従います。

  1. Visual Studio で、[ファイル]→[新規作成]→[プロジェクト]を選択します。

  2. [新しいプロジェクト]ダイアログボックスで、左ペインから言語を選択し(この例では C# を使用)、テンプレートリストから[WPF/Silverlight アプリケーション]を選択します。

  3. [.NET Framework]ドロップダウンリストで、[.NET Framework 4]以上を選択します。

  4. プロジェクトの名前を入力し、[OK]をクリックします。[新しい WPF/Silverlight アプリケーション]ダイアログボックスが表示されます。

  5. 必要に応じて、[WPF/Silverlight アプリケーションを新しい Web サイトでホストする]ボックスをオフにし、[OK]をクリックします。MainWindow.xaml ファイルが開きます。

  6. プロジェクトの XAML ウィンドウで、カーソルを <Grid> タグと </Grid> タグの間に置き、1回クリックします。

  7. ツールボックスに移動し、C1OutlookBar アイコンを <Grid> タグの間にドラッグし、MainWindow.xaml に C1OutlookBar を追加します。XAML マークアップは次のようになります。

    XAML
    コードのコピー
    <Window xmlns:c1="http://schemas.componentone.com/winfx/2006/xaml" x:Class="WpfApplication17.MainWindow"
          xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
          xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
          Title="MainWindow" Height="350" Width="525">
         <Grid>
            <c1:C1OutlookBar />
         </Grid>
    </Window>
    
    XAML
    コードのコピー
    <UserControl x:Class="OutlookBar.MainPage"
        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"
        d:DesignHeight="300" d:DesignWidth="400" 
        xmlns:c1="http://schemas.componentone.com/winfx/2006/xaml" xmlns:my="clr-namespace:C1.Silverlight;assembly=C1.Silverlight">
        <Grid x:Name="LayoutRoot" Background="White">
            <c1:C1OutlookBar c1:C1NagScreen.Nag="True">
            </c1:C1OutlookBar>
        </Grid>
    </UserControl>
    

次の手順では、いくつかのC1OutlookItemC1OutlookBar に追加します。