實際上問題是我在網格視圖單元格模板中創建了一個堆棧面板,當我單擊堆棧面板的第一項時,單元格頂部出現一個白色突出顯示.i想要刪除它
有沒有解決方案嗎? 由於事先在Telerik Rad Grid視圖中禁用行選擇
這裏是我的代碼
<telerikControls:GridViewDataColumn>
<telerikControls:GridViewDataColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical" Margin="0,0,0,5" Height="Auto">
<itimControls:Label Text="Qty/Value" Name="lblqty" Width="90" VerticalAlignment="Bottom" Margin="0,0,0,0" ></itimControls:Label>
<itimControls:TextBox Width="80" Value="{Binding Qty,Mode=TwoWay}" VerticalAlignment="Top" Margin="0,3,0,0" ></itimControls:TextBox>
</StackPanel>
</DataTemplate>
</telerikControls:GridViewDataColumn.CellTemplate>
</telerikControls:GridViewDataColumn>
我不能分享輸出的畫面,由於聲譽。
感謝@Adam,但這個解決方案不工作在我的scenario.is有任何方法來做任何網格事件? – user2873347