diff options
author | Joe George <joe@zeroc.com> | 2014-12-18 09:41:43 -0800 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2014-12-18 09:41:43 -0800 |
commit | ac5d0dda9cff2bf3b4a1884d0d3c4da3dc450f34 (patch) | |
tree | 292675c9177f0bd563321da784d17f26bffdda4a /cs/demo/Ice/wpf/HelloWindow.xaml.cs | |
parent | Some README updates (diff) | |
download | ice-ac5d0dda9cff2bf3b4a1884d0d3c4da3dc450f34.tar.bz2 ice-ac5d0dda9cff2bf3b4a1884d0d3c4da3dc450f34.tar.xz ice-ac5d0dda9cff2bf3b4a1884d0d3c4da3dc450f34.zip |
Another fix for ICE-6169 wpf demo
Diffstat (limited to 'cs/demo/Ice/wpf/HelloWindow.xaml.cs')
-rw-r--r-- | cs/demo/Ice/wpf/HelloWindow.xaml.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cs/demo/Ice/wpf/HelloWindow.xaml.cs b/cs/demo/Ice/wpf/HelloWindow.xaml.cs index 9a55d5661bf..0756345685e 100644 --- a/cs/demo/Ice/wpf/HelloWindow.xaml.cs +++ b/cs/demo/Ice/wpf/HelloWindow.xaml.cs @@ -125,7 +125,7 @@ namespace Ice.wpf.client { if (_helloPrx == null) { - return; + updateProxy(); } int delay =(int)delaySlider.Value; @@ -186,7 +186,7 @@ namespace Ice.wpf.client { if(_helloPrx == null) { - return; + updateProxy(); } int delay =(int)delaySlider.Value; @@ -258,7 +258,7 @@ namespace Ice.wpf.client private void timeoutSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e) { timeoutLabel.Content =(timeoutSlider.Value / 1000.0).ToString("F1"); - updateProxy(); + _helloPrx = null; } private void delaySlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e) @@ -277,7 +277,7 @@ namespace Ice.wpf.client private void modeSelectionChanged(object sender, SelectionChangedEventArgs e) { - updateProxy(); + _helloPrx = null; } private void hostname_TextChanged(object sender, TextChangedEventArgs e) @@ -313,7 +313,7 @@ namespace Ice.wpf.client } } - updateProxy(); + _helloPrx = null; } } |