Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
on resizing window the user control should automatically resize
posted

Hi Team,

i have problem while resizing the window. 

I have a window inside that i have a grid inside that im using a user control.  when im resizing the window the user control content tables and  buttons on xamdatagrid are not resizing automatically. 

I tried with the below code and it is not working.

1) This is in the window

<window>

<Grid>
<Views:InstrumentPickerView x:Name="InstrumentPicker"/>
</Grid>
</Window>

2) This is in the user control

 <StackPanel>

<StackPanel Orientation="Horizontal">
<igDP:XamDataGrid Theme="Aero" x:Name="XamDataPresenter1" Height="160" DataSource="{Binding user, Mode=OneWay}"
Grid.Row="0" Margin="5" Grid.Column="1" GroupByAreaLocation="None" ActiveDataItem="{Binding Selecteuser}">

 </StackPanel>

 </StackPanel>

is there anything im missing here.