**SILVERLIGHT**
斷點功能在silverlight中不起作用5.請告訴我什麼是問題以及如何解決問題。Silverlight 5中的斷點不起作用
**XAML DESIGN**
<UserControl x:Class="SilverlightApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<!--<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Border Width="200" Height="200" Grid.Column="0" BorderBrush="Red" BorderThickness="2" Background="Azure" MouseLeftButtonDown="Border_MouseLeftButtonDown"/>
<ListBox x:Name="lstClickReport" Grid.Column="1" Margin="10" Width="300" Height="200"/>-->
<TextBlock x:Name="txtBlock" HorizontalAlignment="Center" Text="{Binding Message}"/>
</Grid>
</UserControl>
Please do the needful.
@Zee錯誤,使用Silverlight 5.打破和調試數據綁定是一項關鍵的新功能。 – jv42
@ jv42我道歉,感謝您糾正我的錯誤,之前的帖子被刪除,因爲它不是真的 – Zee