Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
146123 | Jul 21,2019 10:01 PM UTC | Jul 26,2019 06:04 AM UTC | UWP | 7 |
![]() |
Tags: SfKanban |
<DataTemplate x:Key="CardTemplate">
<StackPanel
x:Name="card"
Margin="0,10,0,10"
Padding="10,10,10,10"
Background="LightGray"
Orientation="Vertical"
RightTapped="Card_RightTapped"
Tapped="Card_Tapped">
. . .
</StackPanel>
</DataTemplate> |
private void Card_Tapped(object sender, Windows.UI.Xaml.Input.TappedRoutedEventArgs e)
{
//add action on left click
}
private void Card_RightTapped(object sender, Windows.UI.Xaml.Input.RightTappedRoutedEventArgs e)
{
//add action on right click
} |
<syncfusion:SfKanban
x:Name="kanban"
AutoGenerateColumns="False"
CardTemplate="{StaticResource CardTemplate}"
ColumnMappingPath="Category"
ItemsSource="{Binding Tasks}"
MinColumnWidth="150">
. . .
</syncfusion:SfKanban> |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.