Skip to content

Commit ccda4ce

Browse files
committed
Successfully injected XamllDisplayerPanel into Chips.xaml
1 parent d54f3e1 commit ccda4ce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

MainDemo.Wpf/Chips.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
x:Name="ButtonsDemoChip"
4040
Click="ButtonsDemoChip_OnClick"
4141
DeleteClick="ButtonsDemoChip_OnDeleteClick"
42-
ToolTip="Just a tool tip"
42+
ToolTip="Just a tool tip"
4343
DeleteToolTip="Your friendly neighbour delete button"
4444
>
4545
<materialDesign:Chip.Icon>

MainDemo.Wpf/Chips.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ public Chips()
3030

3131
private void ButtonsDemoChip_OnClick(object sender, RoutedEventArgs e)
3232
{
33-
Console.WriteLine("Chip clicked.");
33+
MessageBox.Show("Chip clicked.");
3434
}
3535

3636
private void ButtonsDemoChip_OnDeleteClick(object sender, RoutedEventArgs e)
3737
{
38-
Console.WriteLine("Chip delete clicked.");
38+
MessageBox.Show("Chip delete clicked.");
3939
}
4040

4141
}

MainDemo.Wpf/Helper/SourceRouter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace MaterialDesignDemo.Helper {
1212
public class SourceRouter {
1313
private string _typeName;
14-
private const bool GetFromLocalSource = false;
14+
private const bool GetFromLocalSource = true;
1515
public SourceRouter(string typeName) {
1616
_typeName = typeName;
1717
}

0 commit comments

Comments
 (0)