このクイックスタートでは、GcSpreadSheetコンポーネントを使用して簡単なアプリケーションを作成する方法を説明します。
また、Licenses.licxが以下のような記述になります。
コードのコピー
|
|
---|---|
GrapeCity.Wpf.SpreadSheet.GcSpreadSheet, GrapeCity.Wpf.SpreadSheet, Version=3.0.xxxx.xxxx, Culture=neutral, PublicKeyToken=a5fa960294d899e7 |
XAML |
コードのコピー
|
---|---|
<Window 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" xmlns:local="clr-namespace:YourApplicationName" xmlns:gss="http://schemas.grapecity.com/windows/spreadsheet/2020" x:Class="YourApplicationName.MainWindow" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded"> <Grid> <gss:GcSpreadSheet x:Name="GcSpreadSheet" HorizontalAlignment="Left" VerticalAlignment="Top"/> </Grid> </Window> |
次の手段は、GcFormulaBarを追加してGcSpreadSheetへの連結する方法を説明します。
XAML |
コードのコピー
|
---|---|
<Window x:Class="YourApplicationName.MainWindow" 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" xmlns:gss="http://schemas.grapecity.com/windows/spreadsheet/2020" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="30"/> <RowDefinition/> <RowDefinition Height="350"/> <RowDefinition/> </Grid.RowDefinitions> <gss:GcFormulaBar x:Name="GcFormulaBar" Grid.Row="0" ShowEditingButtons="True" Expandable="True" AssociatedSpread="{x:Reference Name=GcSpreadSheet}"/> <gs:GcSpreadSheet x:Name="GcSpreadSheet" Grid.Row="1" Margin="0,0,0,149" Grid.RowSpan="2" /> </Grid> </Window> |