XML Commenting
Consider this XML fragment:
<ListBox x:Name="pictureBox"
ItemsSource="{Binding}"
MouseDoubleClick="item_DoubleClick"
>
Is there any way to comment MouseDoubleClick="item_DoubleClick"? This attempt fails:
<ListBox x:Name="pictureBox"
ItemsSource="{Binding}"
<!-- MouseDoubleClick="item_DoubleClick"-->
>
+3
2 answers