2011年2月21日 星期一

使用PresentationTraceSources.TraceLevel除錯

WPF在進行DataBinding的過程中,若發生錯誤,並不會以未處理的Exception型式告知,因此你將無法寫程式利用傳統的try..catch區塊來捕捉錯誤,你可以利用 PresentationTraceSources.TraceLevel來得知更多錯誤資訊幫助除錯,例如有一個WPF程式包含以下類別



public class MyUser {
       public string UserName { get; set; }       
   }

文字方塊繫結如下
<TextBox>
           <TextBox.Text>
               <Binding Path="Name" />
           </TextBox.Text>
       </TextBox>

MainWindow Contructor如下
public MainWindow() {
          InitializeComponent();
          this.DataContext = new MyUser() {  UserName = "Mary" };
      }

執行後檢視Output Window只看到Error 40的訊息
image
重寫一下設定,Textbox設定TraceLevel為High

<Window x:Class="P5_21_TraceLevel.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
       
         xmlns:diag="clr-namespace:System.Diagnostics;assembly=WindowsBase"
        >
    <Grid x:Name="roor">    
        <TextBox>
            <TextBox.Text>
                <Binding Path="Name"
               diag:PresentationTraceSources.TraceLevel="High"/>
            </TextBox.Text>
        </TextBox>
    </Grid>
</Window>

適當設定Visual Studio 2010 Debugging
image

重Run,Output window會多顯示更多的資訊出來
image

沒有留言:

總網頁瀏覽量