Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
101 views
in Technique[技术] by (71.8m points)

c# - Why can't click button in DataGrid?

this is my xaml code:

<DataGrid x:Name="dg_projectassitant" CanUserAddRows="False" AutoGenerateColumns="False" ItemsSource="{Binding projectassitance}" HorizontalAlignment="Left" Height="324" Margin="315,52,0,0" VerticalAlignment="Top" Width="771" Background="White">

                       <DataGrid.Columns>
                            <DataGridTemplateColumn Header="" Width="60" >
                                <DataGridTemplateColumn.CellTemplate>
                                    <DataTemplate>
                                        <Button IsEnabled="True" HorizontalAlignment="Center" Content="press me" Width="55" FontSize="16" Click="Button_Click"/>
                                    </DataTemplate>
                                </DataGridTemplateColumn.CellTemplate>
                            </DataGridTemplateColumn>
                            <DataGridTextColumn Header="SELLS" Binding="{Binding Path='sells'}" FontWeight="Bold" IsReadOnly="True" FontSize="16"/>
                            <DataGridTextColumn Header="Project" Binding="{Binding Path='project'}"  IsReadOnly="True" FontSize="16"/>                           
                        </DataGrid.Columns>
                    </DataGrid>

Sometimes some controls(like button,checkbox) in the datagrid can't be focus on,but sometimes it can.

Is there any ideas for this situation?

question from:https://stackoverflow.com/questions/65914968/why-cant-click-button-in-datagrid

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...