C# と VB.NET の質問掲示板

ASP.NET、C++/CLI、Java 何でもどうぞ

C# と VB.NET の入門サイト

Re[1]: XAMLのGridSplitter


(過去ログ 63 を表示中)

[トピック内 2 記事 (1 - 2 表示)]  << 0 >>

■36178 / inTopicNo.1)  XAMLのGridSplitter
  
□投稿者/ 倉田 有大 (602回)-(2009/05/23(Sat) 06:07:52)

分類:[.NET 全般] 

2009/05/23(Sat) 06:08:27 編集(投稿者)
こんにちは、倉田 有大です。一段落ついたので、またXAMLに挑戦中です。
やりたいことは、XAML上でSplitContainerと同じ動作です。

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="150" />
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <Button Name="button1" HorizontalAlignment="Stretch" Width="Auto">Button</Button>
        <Button Grid.Column="1" Name="button2" HorizontalAlignment="Stretch" Width="Auto">Button</Button>
    </Grid>
</Window>

    
二つのボタンをウインドウいっぱいに横に並べるソースです。
ボタンの間にスプリットと挿入し、ボタンの大きさを変更したいのです。
どうやらGridSplitterを使用するみたいですが、宇宙仮面さんの http://uchukamen.com/WPF/XAML-Control/Default.htm 例ですとコントロールのど真ん中にきているんですよね。
アドバイスいただけたら幸いです。

#うわー、XAMLはデザインのやり方も一からですね。

引用返信 編集キー/
■36179 / inTopicNo.2)  Re[1]: XAMLのGridSplitter
□投稿者/ 倉田 有大 (603回)-(2009/05/23(Sat) 06:10:59)
<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="150" />
            <ColumnDefinition Width="5" />
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <GridSplitter HorizontalAlignment="Stretch" Margin="0" Grid.Column="1" />
        <Button Name="button1" HorizontalAlignment="Stretch" Width="Auto">Button</Button>
        <Button Grid.Column="2" Name="button2" HorizontalAlignment="Stretch" Width="Auto">Button</Button>
    </Grid>
</Window>

で、できた、お休みなさい・・Zzz
    

解決済み
引用返信 編集キー/


トピック内ページ移動 / << 0 >>

このトピックに書きこむ

過去ログには書き込み不可

管理者用

- Child Tree -