前提・実現したいこと
・GroupBoxとGridのサイズをウィンドウサイズに合わせたサイズに変更したいのですが実際のサイズがちいさくなってしまい悩んでいます。
Height="*"とするとエラーになり、Height="Auto"にしてもウィンドウサイズよりも小さいサイズとなってしまいます。
指定の方法を教えてください。
該当のソースコード
xmal
1<Window 2 x:Class="Test.Views.MainWindow" 3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 5 xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors" 6 xmlns:l="http://schemas.livet-mvvm.net/2011/wpf" 7 xmlns:v="clr-namespace:Test.Views" 8 xmlns:vm="clr-namespace:Test.ViewModels" 9 Title="MainWindow" 10 Width="1000" 11 Height="800"> 12 13 <Window.DataContext> 14 <vm:MainWindowViewModel /> 15 </Window.DataContext> 16 17 18 <behaviors:Interaction.Triggers> 19 <!-- When ContentRendered event raised, Initialize method of ViewModel would be called. --> 20 <behaviors:EventTrigger EventName="ContentRendered"> 21 <l:LivetCallMethodAction MethodName="Initialize" MethodTarget="{Binding}" /> 22 </behaviors:EventTrigger> 23 24 <!-- Dispose method is called, when Window closing. --> 25 <behaviors:EventTrigger EventName="Closed"> 26 <l:DataContextDisposeAction /> 27 </behaviors:EventTrigger> 28 29 <!-- If you make user choose 'OK or Cancel' closing Window, then please use Window Close cancel Behavior. --> 30 31 </behaviors:Interaction.Triggers> 32 33 <Grid> 34 <GroupBox x:Name="CalendarGropu1" 35 Header="" 36 HorizontalAlignment="Left" 37 Height="300" 38 Margin="10,10,0,0" 39 VerticalAlignment="Top" 40 Width="497" 41 Style="{StaticResource gp-normal}" > 42 43 44 <Grid x:Name="CalendarGrid" 45 HorizontalAlignment="Left" 46 Height="258" 47 Margin="10,10,0,0" 48 VerticalAlignment="Top" 49 Width="467" 50 > 51 52 53 <Grid.ColumnDefinitions> 54 <ColumnDefinition Width="1*" /> 55 <ColumnDefinition Width="1*" /> 56 <ColumnDefinition Width="1*" /> 57 <ColumnDefinition Width="1*" /> 58 <ColumnDefinition Width="1*" /> 59 <ColumnDefinition Width="1*" /> 60 <ColumnDefinition Width="1*" /> 61 </Grid.ColumnDefinitions> 62 63 <Grid.RowDefinitions> 64 <RowDefinition Height="20" /> 65 <RowDefinition Height="1*" /> 66 <RowDefinition Height="1*" /> 67 <RowDefinition Height="1*" /> 68 <RowDefinition Height="1*" /> 69 <RowDefinition Height="1*" /> 70 </Grid.RowDefinitions> 71 </Grid> 72 </GroupBox> 73 74 </Grid> 75</Window>
補足情報(FW/ツールのバージョンなど)
VisualStudio2019
.Net Core3.0
Livet v3.2.1
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。