Click here to Skip to main content
15,902,636 members
Home / Discussions / WPF
   

WPF

 
QuestionWCF - AGAIN Pin
#realJSOP5-Jul-10 3:54
professional#realJSOP5-Jul-10 3:54 
AnswerRe: WCF - AGAIN Pin
Abhinav S5-Jul-10 4:41
Abhinav S5-Jul-10 4:41 
GeneralRe: WCF - AGAIN Pin
#realJSOP5-Jul-10 4:44
professional#realJSOP5-Jul-10 4:44 
GeneralRe: WCF - AGAIN Pin
Abhinav S5-Jul-10 4:59
Abhinav S5-Jul-10 4:59 
GeneralRe: WCF - AGAIN Pin
#realJSOP5-Jul-10 5:02
professional#realJSOP5-Jul-10 5:02 
GeneralRe: WCF - AGAIN Pin
Abhinav S5-Jul-10 5:25
Abhinav S5-Jul-10 5:25 
GeneralRe: WCF - AGAIN Pin
#realJSOP5-Jul-10 14:39
professional#realJSOP5-Jul-10 14:39 
QuestionAfter changing global bool, IsEnabled property is not updating Pin
xtr33me4-Jul-10 10:15
xtr33me4-Jul-10 10:15 
I am using WPF .Net 4.0 and I have a Window that populates a number of controls with data from a file. These are all within a DockingManager ContentControl which I then have its IsEnabled property bound to a global boolean variable. Now when the window first loads, it is correctly enabled or disabled based on what default value I set to it. However when I select "Edit Network" from my context menu, I update the global bool, which does update when I put a breakpoint, but the ContentControls IsEnabled property does not get set. Any ideas as to why this may be? Is there a view update I need to call or something?

<ContentControl Name="contentCtrlValues" 
                                  syncfusion:DockingManager.Header="Current Values" 
                                syncfusion:DockingManager.CanAutoHide="False"
                               Visibility="Visible"
                            syncfusion:DockingManager.State="Document"     
					      syncfusion:DockingManager.CanDock="False"
					      syncfusion:DockingManager.CanFloat="False" IsEnabled="{Binding Path=NetEnabled, 
                                                ElementName=window1, Mode=TwoWay}">


private Boolean bNetIDEnabled = false;
public Boolean NetEnabled
{
    get { return bNetIDEnabled; }
    set { bNetIDEnabled = value; }
}


private void HandleEditNetwork(object sender, RoutedEventArgs e)
{
    NetEnabled = true;
}

AnswerRe: After changing global bool, IsEnabled property is not updating Pin
Pete O'Hanlon4-Jul-10 10:43
mvePete O'Hanlon4-Jul-10 10:43 
GeneralRe: After changing global bool, IsEnabled property is not updating Pin
xtr33me5-Jul-10 1:48
xtr33me5-Jul-10 1:48 
GeneralRe: After changing global bool, IsEnabled property is not updating Pin
Pete O'Hanlon5-Jul-10 1:54
mvePete O'Hanlon5-Jul-10 1:54 
AnswerRe: After changing global bool, IsEnabled property is not updating Pin
BechBej4-Jul-10 12:16
BechBej4-Jul-10 12:16 
GeneralRe: After changing global bool, IsEnabled property is not updating Pin
xtr33me5-Jul-10 1:49
xtr33me5-Jul-10 1:49 
QuestionClickable tooltip Pin
John Underhill4-Jul-10 3:12
John Underhill4-Jul-10 3:12 
AnswerRe: Clickable tooltip Pin
BechBej4-Jul-10 12:12
BechBej4-Jul-10 12:12 
GeneralRe: Clickable tooltip Pin
John Underhill5-Jul-10 9:42
John Underhill5-Jul-10 9:42 
GeneralRe: Clickable tooltip Pin
Pete O'Hanlon5-Jul-10 9:55
mvePete O'Hanlon5-Jul-10 9:55 
GeneralRe: Clickable tooltip Pin
John Underhill5-Jul-10 10:33
John Underhill5-Jul-10 10:33 
GeneralRe: Clickable tooltip Pin
Pete O'Hanlon5-Jul-10 10:53
mvePete O'Hanlon5-Jul-10 10:53 
GeneralRe: Clickable tooltip Pin
John Underhill5-Jul-10 11:11
John Underhill5-Jul-10 11:11 
GeneralRe: Clickable tooltip Pin
Pete O'Hanlon5-Jul-10 11:49
mvePete O'Hanlon5-Jul-10 11:49 
Questioncross-domain in WCF Pin
ctlqt123-Jul-10 17:17
ctlqt123-Jul-10 17:17 
AnswerRe: cross-domain in WCF Pin
Abhinav S3-Jul-10 19:04
Abhinav S3-Jul-10 19:04 
QuestionVS2010 SL4 Debugging [SOLVED] Pin
#realJSOP3-Jul-10 12:34
professional#realJSOP3-Jul-10 12:34 
AnswerRe: VS2010 SL4 Debugging Pin
Ravi Bhavnani3-Jul-10 18:02
professionalRavi Bhavnani3-Jul-10 18:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.