2008-09-05 14 views
6

मेरे पास एक ऑब्जेक्ट पर एक प्रॉपर्टी (किसी छवि पर स्ट्रिंग यूआरएल) से जुड़ी स्रोत के साथ एक छवि नियंत्रण है। सेवा कॉल करने के बाद, मैं डेटा ऑब्जेक्ट को एक नए यूआरएल के साथ अद्यतन करता हूं। PropertyChanged ईवेंट का आह्वान करने के बाद, मेरे कोड को छोड़ने के बाद अपवाद फेंक दिया जाता है।सिल्वरलाइट डेटा बाइंडिंग क्रॉस थ्रेड इश्यू

डेटा संरचना और सेवा तर्क सभी कोर डीएल में किए जाते हैं जिनके पास यूआई का कोई ज्ञान नहीं है। जब मैं डिस्पैचर तक नहीं पहुंच पाता हूं तो मैं UI थ्रेड के साथ कैसे समन्वयित करूं?

पीएस: डिस्पैचर प्राप्त करने के लिए एप्लिकेशन.क्यूरेंट. रूटविज़ुअल एक्सेस करना एक समाधान नहीं है क्योंकि रूट विज़ुअल एक अलग थ्रेड पर है (जिससे सटीक अपवाद मुझे रोकने की आवश्यकता है)।

पीपीएस: यह केवल छवि नियंत्रण के साथ एक समस्या है, किसी अन्य UI तत्व के लिए बाध्यकारी, क्रॉस थ्रेड समस्या आपके लिए संभाली जाती है।

उत्तर

0

एप्लिकेशन क्लास पर रूटविज़ुअल के लिए संपत्ति गेटटर में एक थ्रेड चेक है जो अपवाद का कारण बनता है। मैं अपने App.xaml.cs में अपने खुद के संपत्ति में जड़ दृश्य के डिस्पैचर भंडारण के द्वारा यह चारों ओर हो गया है:

public static Dispatcher RootVisualDispatcher { get; set; } 

private void Application_Startup(object sender, StartupEventArgs e) 
{ 
    this.RootVisual = new Page(); 
    RootVisualDispatcher = RootVisual.Dispatcher; 
} 

आप तो बल्कि Application.Current.RootVisual.Dispatcher से App.RootVisualDispatcher पर BeginInvoke फोन यदि आप shouldn ' यह अपवाद नहीं मिलता है।

0

मैं इस के लिए एक समान मुद्दे में भाग गया, लेकिन यह विंडोज़ रूपों में था:

मैं एक वर्ग है कि यह खुद धागा है, किसी अन्य प्रक्रिया के बारे में आंकड़े को अपडेट करते है, वहाँ मेरी यूआई में एक नियंत्रण है कि डेटाबाउंड है है इस वस्तु के लिए। मैं पार धागा कॉल मुद्दों में चल रहा था, यहाँ है मैं इसे कैसे हल हो:

Form m_MainWindow; //Reference to the main window of my application 
protected virtual void OnPropertyChanged(string propertyName) 
{ 
    if(PropertyChanged != null) 
    if(m_MainWindow.InvokeRequired) 
     m_MainWindow.Invoke(
     PropertyChanged, this, new PropertyChangedEventArgs(propertyName); 
    else 
     PropertyChanged(this, new PropertyChangedEventArgs(propertyName); 
} 

यह महान काम करने के लिए, अगर कोई सुझाव है, तो कृपया मुझे बताएं लगता है।

7
System.Windows.Deployment.Current.Dispatcher.BeginInvoke(() => {...}); 

इसके अलावा here.

0

देखो कभी हम यूआई संबंधित आइटम जो कार्रवाई यूआई सूत्र में होना चाहिए अद्यतन करना चाहते वरना आप गलत पार धागा पहुँच अपवाद

Deployment.Current.Dispatcher.BeginInvoke(() => 

{ 

UpdateUI(); // DO the actions in the function Update UI 

}); 

public void UpdateUI() 

{ 

//to do :Update UI elements here 

} 
0

INotifyPropertyChanged मिल जाएगा इंटरफ़ेस का उपयोग ग्राहकों को सूचित करने के लिए किया जाता है, आमतौर पर बाध्यकारी क्लाइंट, कि एक संपत्ति मूल्य बदल गया है।

उदाहरण के लिए, फर्स्टनाम नामक संपत्ति के साथ एक व्यक्ति वस्तु पर विचार करें। जेनेरिक प्रॉपर्टी-चेंज अधिसूचना प्रदान करने के लिए, व्यक्ति का प्रकार INotifyPropertyChanged इंटरफेस लागू करता है और फर्स्टनाम बदलते समय प्रॉपर्टी चेंज इवेंट बढ़ाता है।

परिवर्तन सूचना एक बाध्य ग्राहक और डेटा स्रोत के बीच एक बाध्यकारी में होने के लिए, अपने बाध्य प्रकार या तो चाहिए:

लागू INotifyPropertyChanged इंटरफेस (पसंदीदा)।

बाध्य प्रकार की प्रत्येक संपत्ति के लिए एक परिवर्तन ईवेंट प्रदान करें।

दोनों मत करो।

उदाहरण:

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Drawing; 
using System.Runtime.CompilerServices; 
using System.Windows.Forms; 

// Change the namespace to the project name. 
namespace TestNotifyPropertyChangedCS 
{ 
    // This form demonstrates using a BindingSource to bind 
    // a list to a DataGridView control. The list does not 
    // raise change notifications. However the DemoCustomer type 
    // in the list does. 
    public partial class Form1 : Form 
    { 
     // This button causes the value of a list element to be changed. 
     private Button changeItemBtn = new Button(); 

     // This DataGridView control displays the contents of the list. 
     private DataGridView customersDataGridView = new DataGridView(); 

     // This BindingSource binds the list to the DataGridView control. 
     private BindingSource customersBindingSource = new BindingSource(); 

     public Form1() 
     { 
      InitializeComponent(); 

      // Set up the "Change Item" button. 
      this.changeItemBtn.Text = "Change Item"; 
      this.changeItemBtn.Dock = DockStyle.Bottom; 
      this.changeItemBtn.Click += 
       new EventHandler(changeItemBtn_Click); 
      this.Controls.Add(this.changeItemBtn); 

      // Set up the DataGridView. 
      customersDataGridView.Dock = DockStyle.Top; 
      this.Controls.Add(customersDataGridView); 

      this.Size = new Size(400, 200); 
     } 

     private void Form1_Load(object sender, EventArgs e) 
     { 
      // Create and populate the list of DemoCustomer objects 
      // which will supply data to the DataGridView. 
      BindingList<DemoCustomer> customerList = new BindingList<DemoCustomer>(); 
      customerList.Add(DemoCustomer.CreateNewCustomer()); 
      customerList.Add(DemoCustomer.CreateNewCustomer()); 
      customerList.Add(DemoCustomer.CreateNewCustomer()); 

      // Bind the list to the BindingSource. 
      this.customersBindingSource.DataSource = customerList; 

      // Attach the BindingSource to the DataGridView. 
      this.customersDataGridView.DataSource = 
       this.customersBindingSource; 

     } 

     // Change the value of the CompanyName property for the first 
     // item in the list when the "Change Item" button is clicked. 
     void changeItemBtn_Click(object sender, EventArgs e) 
     { 
      // Get a reference to the list from the BindingSource. 
      BindingList<DemoCustomer> customerList = 
       this.customersBindingSource.DataSource as BindingList<DemoCustomer>; 

      // Change the value of the CompanyName property for the 
      // first item in the list. 
      customerList[0].CustomerName = "Tailspin Toys"; 
      customerList[0].PhoneNumber = "(708)555-0150"; 
     } 

    } 

    // This is a simple customer class that 
    // implements the IPropertyChange interface. 
    public class DemoCustomer : INotifyPropertyChanged 
    { 
     // These fields hold the values for the public properties. 
     private Guid idValue = Guid.NewGuid(); 
     private string customerNameValue = String.Empty; 
     private string phoneNumberValue = String.Empty; 

     public event PropertyChangedEventHandler PropertyChanged; 

     // This method is called by the Set accessor of each property. 
     // The CallerMemberName attribute that is applied to the optional propertyName 
     // parameter causes the property name of the caller to be substituted as an argument. 
     private void NotifyPropertyChanged([CallerMemberName] String propertyName = "") 
     { 
      if (PropertyChanged != null) 
      { 
       PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); 
      } 
     } 

     // The constructor is private to enforce the factory pattern. 
     private DemoCustomer() 
     { 
      customerNameValue = "Customer"; 
      phoneNumberValue = "(312)555-0100"; 
     } 

     // This is the public factory method. 
     public static DemoCustomer CreateNewCustomer() 
     { 
      return new DemoCustomer(); 
     } 

     // This property represents an ID, suitable 
     // for use as a primary key in a database. 
     public Guid ID 
     { 
      get 
      { 
       return this.idValue; 
      } 
     } 

     public string CustomerName 
     { 
      get 
      { 
       return this.customerNameValue; 
      } 

      set 
      { 
       if (value != this.customerNameValue) 
       { 
        this.customerNameValue = value; 
        NotifyPropertyChanged(); 
       } 
      } 
     } 

     public string PhoneNumber 
     { 
      get 
      { 
       return this.phoneNumberValue; 
      } 

      set 
      { 
       if (value != this.phoneNumberValue) 
       { 
        this.phoneNumberValue = value; 
        NotifyPropertyChanged(); 
       } 
      } 
     } 
    } 
} 
संबंधित मुद्दे