File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 39
39
x : Name =" ButtonsDemoChip"
40
40
Click =" ButtonsDemoChip_OnClick"
41
41
DeleteClick =" ButtonsDemoChip_OnDeleteClick"
42
- ToolTip =" Just a tool tip"
42
+ ToolTip =" Just a tool tip"
43
43
DeleteToolTip =" Your friendly neighbour delete button"
44
44
>
45
45
<materialDesign : Chip .Icon>
Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ public Chips()
30
30
31
31
private void ButtonsDemoChip_OnClick ( object sender , RoutedEventArgs e )
32
32
{
33
- Console . WriteLine ( "Chip clicked." ) ;
33
+ MessageBox . Show ( "Chip clicked." ) ;
34
34
}
35
35
36
36
private void ButtonsDemoChip_OnDeleteClick ( object sender , RoutedEventArgs e )
37
37
{
38
- Console . WriteLine ( "Chip delete clicked." ) ;
38
+ MessageBox . Show ( "Chip delete clicked." ) ;
39
39
}
40
40
41
41
}
Original file line number Diff line number Diff line change 11
11
namespace MaterialDesignDemo . Helper {
12
12
public class SourceRouter {
13
13
private string _typeName ;
14
- private const bool GetFromLocalSource = false ;
14
+ private const bool GetFromLocalSource = true ;
15
15
public SourceRouter ( string typeName ) {
16
16
_typeName = typeName ;
17
17
}
You can’t perform that action at this time.
0 commit comments