<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>winrtxamltoolkit Discussions Rss Feed</title><link>http://winrtxamltoolkit.codeplex.com/discussions</link><description>winrtxamltoolkit Discussions Rss Description</description><item><title>New Post: [COMException] INotifyPropertyChanged and LineSeries</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444387</link><description>&lt;div style="line-height: normal;"&gt;Anybody ? :)&lt;br /&gt;
&lt;/div&gt;</description><author>Nicothekrug</author><pubDate>Thu, 23 May 2013 10:30:21 GMT</pubDate><guid isPermaLink="false">New Post: [COMException] INotifyPropertyChanged and LineSeries 20130523103021A</guid></item><item><title>New Post: [Charting] format the Linear Axis</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444668</link><description>&lt;div style="line-height: normal;"&gt;I really recommend that you ask questions on Stack Overflow. The chart controls are a huge topic and they should work more or less the same as the Silverlight Toolkit ones since I ported them from there. I might not be able to answer all questions very quickly here and SO is a place where it might be easier to find help. Just tag your question with winrt, winrt-xaml, silverlight-toolkit, xaml, etc.&lt;br /&gt;
&lt;/div&gt;</description><author>xyzzer</author><pubDate>Wed, 22 May 2013 22:40:13 GMT</pubDate><guid isPermaLink="false">New Post: [Charting] format the Linear Axis 20130522104013P</guid></item><item><title>New Post: [Charting] format the Linear Axis</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444668</link><description>&lt;div style="line-height: normal;"&gt;Hi, How do I format the Linear Axis,&lt;br /&gt;
eg. display percentage as Y Axis from 0 to 100%&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;/div&gt;</description><author>csamzhou</author><pubDate>Wed, 22 May 2013 22:03:34 GMT</pubDate><guid isPermaLink="false">New Post: [Charting] format the Linear Axis 20130522100334P</guid></item><item><title>New Post: chart doesn't exist(solved)</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444520</link><description>&lt;div style="line-height: normal;"&gt;Hi, first of all thanks for such great controls&lt;br /&gt;
I want to use the chart control in my application, I got the toolkit installed, and and have these in my xaml :&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;  xmlns:charting=&amp;quot;using:WinRTXamlToolkit.Controls.DataVisualization.Charting&amp;quot;
    xmlns:Series=&amp;quot;using:WinRTXamlToolkit.Controls.DataVisualization.Charting&amp;quot;
    xmlns:datavis=&amp;quot;using:WinRTXamlToolkit.Controls.DataVisualization&amp;quot;&amp;gt;&lt;/code&gt;&lt;/pre&gt;

but when I use&lt;code&gt;&amp;lt;charting: chart&lt;/code&gt; it says chart does not exist in the namespace &lt;code&gt;using:WinRTXamlToolkit.Controls.DataVisualization.Charting&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
There's another reference &lt;code&gt;WinRTXamlToolkit.Controls.DataVisualization&lt;/code&gt; I forgot to add&lt;br /&gt;
Sorry silly mistake&lt;br /&gt;
&lt;/div&gt;</description><author>csamzhou</author><pubDate>Wed, 22 May 2013 04:38:04 GMT</pubDate><guid isPermaLink="false">New Post: chart doesn't exist(solved) 20130522043804A</guid></item><item><title>New Post: [COMException] INotifyPropertyChanged and LineSeries</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444387</link><description>&lt;div style="line-height: normal;"&gt;Hi !&lt;br /&gt;
First of all thank you for this great toolkit. It's an impressive work !&lt;br /&gt;
&lt;br /&gt;
I'm currently using the line chart, and I'm facing a problem : everything goes right, but if I my (In)DependentValue which is bound to my LineSeries contains a change notification (INotifyPropertyChanged), the toolkit raise a COMException.&lt;br /&gt;
&lt;br /&gt;
I've found &lt;a href="https://winrtxamltoolkit.codeplex.com/discussions/402715" rel="nofollow"&gt;this thread&lt;/a&gt; which said that this bug should be already resolved ? I used the last version (1.4.1) of the toolkit from Nuget.&lt;br /&gt;
&lt;br /&gt;
My XAML code :&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;toolkitchart:Chart x:Name=&amp;quot;AltitudeChart&amp;quot; Height=&amp;quot;200&amp;quot;&amp;gt;
                    &amp;lt;toolkitchart:Chart.LegendStyle&amp;gt;
                        &amp;lt;Style TargetType=&amp;quot;FrameworkElement&amp;quot;&amp;gt;
                            &amp;lt;Setter Property=&amp;quot;Width&amp;quot; Value=&amp;quot;0&amp;quot;/&amp;gt;
                        &amp;lt;/Style&amp;gt;
                    &amp;lt;/toolkitchart:Chart.LegendStyle&amp;gt;
                    &amp;lt;toolkitchart:LineSeries
                        Title=&amp;quot;Altitude&amp;quot;
                        IndependentValueBinding=&amp;quot;{Binding Distance}&amp;quot;
                        DependentValueBinding=&amp;quot;{Binding Distance}&amp;quot;
                        IsSelectionEnabled=&amp;quot;True&amp;quot;
                        DependentRangeAxis=&amp;quot;{Binding ElementName=LeftAxis}&amp;quot;
                        IndependentAxis=&amp;quot;{Binding ElementName=BottomAxis}&amp;quot;&amp;gt;
                        &amp;lt;toolkitchart:LineSeries.DataPointStyle&amp;gt;
                            &amp;lt;Style TargetType=&amp;quot;toolkitchart:LineDataPoint&amp;quot;&amp;gt;
                                &amp;lt;Setter Property=&amp;quot;Height&amp;quot; Value=&amp;quot;4&amp;quot;/&amp;gt;
                                &amp;lt;Setter Property=&amp;quot;Width&amp;quot; Value=&amp;quot;4&amp;quot;/&amp;gt;
                                &amp;lt;Setter Property=&amp;quot;Template&amp;quot;&amp;gt;
                                    &amp;lt;Setter.Value&amp;gt;
                                        &amp;lt;ControlTemplate&amp;gt;
                                            &amp;lt;local:DetailedPushpin ManipulationDelta=&amp;quot;DetailedPushpin_ManipulationDelta&amp;quot; ManipulationMode=&amp;quot;TranslateY&amp;quot;/&amp;gt;
                                        &amp;lt;/ControlTemplate&amp;gt;
                                    &amp;lt;/Setter.Value&amp;gt;
                                &amp;lt;/Setter&amp;gt;
                            &amp;lt;/Style&amp;gt;
                        &amp;lt;/toolkitchart:LineSeries.DataPointStyle&amp;gt;
                    &amp;lt;/toolkitchart:LineSeries&amp;gt;
                    &amp;lt;toolkitchart:Chart.Axes&amp;gt;
                        &amp;lt;toolkitchart:LinearAxis x:Name=&amp;quot;RightAxis&amp;quot; Orientation=&amp;quot;Y&amp;quot; Location=&amp;quot;Right&amp;quot;&amp;gt;
                            &amp;lt;toolkitchart:LinearAxis.MajorTickMarkStyle&amp;gt;
                                &amp;lt;Style TargetType=&amp;quot;Line&amp;quot;&amp;gt;
                                    &amp;lt;Setter Property=&amp;quot;Stroke&amp;quot; Value=&amp;quot;White&amp;quot;/&amp;gt;
                                &amp;lt;/Style&amp;gt;
                            &amp;lt;/toolkitchart:LinearAxis.MajorTickMarkStyle&amp;gt;
                        &amp;lt;/toolkitchart:LinearAxis&amp;gt;
                        &amp;lt;toolkitchart:LinearAxis x:Name=&amp;quot;LeftAxis&amp;quot; Orientation=&amp;quot;Y&amp;quot; Location=&amp;quot;Left&amp;quot; Foreground=&amp;quot;White&amp;quot;/&amp;gt;
                        &amp;lt;toolkitchart:LinearAxis x:Name=&amp;quot;BottomAxis&amp;quot; Orientation=&amp;quot;X&amp;quot; Location=&amp;quot;Bottom&amp;quot; Foreground=&amp;quot;White&amp;quot;&amp;gt;
                            &amp;lt;toolkitchart:LinearAxis.MajorTickMarkStyle&amp;gt;
                                &amp;lt;Style TargetType=&amp;quot;Line&amp;quot;&amp;gt;
                                    &amp;lt;Setter Property=&amp;quot;Stroke&amp;quot; Value=&amp;quot;White&amp;quot;/&amp;gt;
                                    &amp;lt;Setter Property=&amp;quot;StrokeThickness&amp;quot; Value=&amp;quot;1&amp;quot;/&amp;gt;
                                &amp;lt;/Style&amp;gt;
                            &amp;lt;/toolkitchart:LinearAxis.MajorTickMarkStyle&amp;gt;
                        &amp;lt;/toolkitchart:LinearAxis&amp;gt;
                    &amp;lt;/toolkitchart:Chart.Axes&amp;gt;
                &amp;lt;/toolkitchart:Chart&amp;gt;&lt;/code&gt;&lt;/pre&gt;

And my C# code :&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;ObservableCollection&amp;lt;AltChartPoint&amp;gt; ChartPoints = new ObservableCollection&amp;lt;AltChartPoint&amp;gt;();
AltChartPoint a = new AltChartPoint(12); 
ChartPoints.Add(a);
a.Distance = 13; &amp;lt;-- Throw exception if the change is notified
...

 public class AltChartPoint : INotifyPropertyChanged
  {
    private double _distance;
    public double Distance 
    {
      get { return _distance; }
      set
      {
        _distance = value;
       //NotifyPropertyChanged(&amp;quot;Distance&amp;quot;); &amp;lt;-- Problem is here
      }
    }
}&lt;/code&gt;&lt;/pre&gt;

Thanks in advance,&lt;br /&gt;
Nicolas&lt;br /&gt;
&lt;br /&gt;
EDIT : the same exception occured if i try to edit directly the LineDataPoint.DependentValue&lt;br /&gt;
&lt;/div&gt;</description><author>Nicothekrug</author><pubDate>Tue, 21 May 2013 09:21:29 GMT</pubDate><guid isPermaLink="false">New Post: [COMException] INotifyPropertyChanged and LineSeries 20130521092129A</guid></item><item><title>New Post: NumericUpDown Control is not working!</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444263</link><description>&lt;div style="line-height: normal;"&gt;I was just modifying it indeed, though it seems to be working for me. Have you modified the template by any chance? I'll try to fix it today.&lt;br /&gt;
&lt;/div&gt;</description><author>xyzzer</author><pubDate>Mon, 20 May 2013 14:56:33 GMT</pubDate><guid isPermaLink="false">New Post: NumericUpDown Control is not working! 20130520025633P</guid></item><item><title>New Post: NumericUpDown Control is not working!</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444263</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
your NumericUpDown control is not working! I installed the latest version with NuGet and when you add the NumericUpDown control the Visual Studio Designer throws the following exception:&lt;br /&gt;
&lt;br /&gt;
ArgumentException: Delegate to an instance method cannot have null 'this'.&lt;br /&gt;
&lt;br /&gt;
   at System.MulticastDelegate.CtorClosed(Object target, IntPtr methodPtr)&lt;br /&gt;
   at WinRTXamlToolkit.Controls.NumericUpDown.OnApplyTemplate()&lt;br /&gt;
   at Windows.UI.Xaml.Controls.Control.ApplyTemplate()&lt;br /&gt;
   at Microsoft.Expression.WindowsXamlPlatform.InstanceBuilders.WindowsUIXamlViewNodeManager.EnsureElementInDictionary(Object root, ViewNode knownAncestor)&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Sascha&lt;br /&gt;
&lt;/div&gt;</description><author>sushilange</author><pubDate>Mon, 20 May 2013 09:57:21 GMT</pubDate><guid isPermaLink="false">New Post: NumericUpDown Control is not working! 20130520095721A</guid></item><item><title>New Post: How to Create A Simple Line Chart</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444212</link><description>&lt;div style="line-height: normal;"&gt;Hi, I appreciate a lot your work doing this toolkit, however I'm having a hard time to create a simple Line chart to my Windows 8 App, since there is no documentation it's hard for me to understand what I should do ... I was unsuccessful at running the sample given in the package, so I was wondering if you could help me out just providing a Example of code that creates the Line Chart in the .xaml and the .cs file that includes values to the chart.&lt;br /&gt;
&lt;br /&gt;
Thanks a lot in advance !&lt;br /&gt;
&lt;/div&gt;</description><author>rodrigocarfer</author><pubDate>Sun, 19 May 2013 19:36:04 GMT</pubDate><guid isPermaLink="false">New Post: How to Create A Simple Line Chart 20130519073604P</guid></item><item><title>New Post: Chart axis label modification</title><link>http://winrtxamltoolkit.codeplex.com/discussions/444197</link><description>&lt;div style="line-height: normal;"&gt;Hello! &lt;br /&gt;
My target is to disable axis labels in a chart (chart contains three LineSeries). I can't figure out how to modify them. Any ideas or known solutions?&lt;br /&gt;
Thanks in advance.&lt;br /&gt;
&lt;/div&gt;</description><author>pietras99</author><pubDate>Sun, 19 May 2013 14:56:17 GMT</pubDate><guid isPermaLink="false">New Post: Chart axis label modification 20130519025617P</guid></item><item><title>New Post: An accordion control would be nice</title><link>http://winrtxamltoolkit.codeplex.com/discussions/395726</link><description>&lt;div style="line-height: normal;"&gt;Nice, thanks brendan.&lt;br /&gt;
&lt;/div&gt;</description><author>fgoulet</author><pubDate>Fri, 17 May 2013 13:20:51 GMT</pubDate><guid isPermaLink="false">New Post: An accordion control would be nice 20130517012051P</guid></item><item><title>New Post: An accordion control would be nice</title><link>http://winrtxamltoolkit.codeplex.com/discussions/395726</link><description>&lt;div style="line-height: normal;"&gt;I ended up porting the accordion from SL toolkit to WinRT (&lt;a href="http://github.com/brendankowitz/ZeroProximity.Accordion" rel="nofollow"&gt;http://github.com/brendankowitz/ZeroProximity.Accordion&lt;/a&gt;). I removed the ScrollViewer as adding vertical scrolling needs to be a very conscious decision in winrt apps. Obviously you'd want to style it to look decent, but the behavior of the control itself seems good.&lt;br /&gt;
&lt;/div&gt;</description><author>brendan</author><pubDate>Sun, 12 May 2013 08:38:00 GMT</pubDate><guid isPermaLink="false">New Post: An accordion control would be nice 20130512083800A</guid></item><item><title>New Post: Size of CountdownControl</title><link>http://winrtxamltoolkit.codeplex.com/discussions/442470</link><description>&lt;div style="line-height: normal;"&gt;Hi firstable I want to say thank youuu for this toolkit which is very useful and great for every Windows RT developpers.&lt;br /&gt;
&lt;br /&gt;
My question is, is it possible to change the size of countdown control included in this xaml toolkit?&lt;br /&gt;
&lt;br /&gt;
I tried to modify the height and the width directly on XAML control code but it seems not working.&lt;br /&gt;
&lt;br /&gt;
Thank you.&lt;br /&gt;
&lt;/div&gt;</description><author>star8909</author><pubDate>Fri, 03 May 2013 15:36:31 GMT</pubDate><guid isPermaLink="false">New Post: Size of CountdownControl 20130503033631P</guid></item><item><title>New Post: Working example for WriteableBitmap extensions, grayscale?</title><link>http://winrtxamltoolkit.codeplex.com/discussions/442182</link><description>&lt;div style="line-height: normal;"&gt;In the release notes, I see:&lt;br /&gt;
&lt;blockquote&gt;
WriteableBitmap extensions - darken, grayscale&lt;br /&gt;
&lt;/blockquote&gt;
I downloaded the solution and ran &amp;quot;WinRTXamlToolkit.Sample&amp;quot; to see if I could figure out how to use the WriteableBitmapRenderExtensions().  Unfortantely, when I try to use WriteableBitmapRenderTestPage.xaml, the app crashes on line 37 of the code-behind:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;            wb = await WriteableBitmapRenderExtensions.Render(this.source);
&lt;/code&gt;&lt;/pre&gt;

With the exception:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;System.NotSupportedException was unhandled by user code
  HResult=-2146233067
  Message=Unable to expand length of this stream beyond its capacity.
  Source=mscorlib
  StackTrace:
       at System.IO.UnmanagedMemoryStream.Write(Byte[] buffer, Int32 offset, Int32 count)
       at WinRTXamlToolkit.Composition.CompositionEngine.&amp;lt;RenderToWriteableBitmap&amp;gt;d__0.MoveNext() in d:\ehunatfs\ehuna2\Nds\Sandbox\WinRTXamlToolkit\WinRTXamlToolkit.Composition\CompositionEngine.cs:line 131
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at WinRTXamlToolkit.Composition.WriteableBitmapRenderExtensions.&amp;lt;Render&amp;gt;d__0.MoveNext() in d:\ehunatfs\ehuna2\Nds\Sandbox\WinRTXamlToolkit\WinRTXamlToolkit.Composition\WriteableBitmapRenderExtensions.cs:line 31
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at WinRTXamlToolkit.Sample.Views.WriteableBitmapRenderTestPage.&amp;lt;RunTest&amp;gt;d__0.MoveNext() in d:\ehunatfs\ehuna2\Nds\Sandbox\WinRTXamlToolkit\WinRTXamlToolkit.Sample\Views\Imaging\WriteableBitmapRenderTestPage.xaml.cs:line 37
  InnerException: 
&lt;/code&gt;&lt;/pre&gt;

Does anyone have an example on how to transform a Bitmap to grayscale?&lt;br /&gt;
&lt;/div&gt;</description><author>ehuna</author><pubDate>Wed, 01 May 2013 05:30:57 GMT</pubDate><guid isPermaLink="false">New Post: Working example for WriteableBitmap extensions, grayscale? 20130501053057A</guid></item><item><title>New Post: LineSeries Y axis values</title><link>http://winrtxamltoolkit.codeplex.com/discussions/441256</link><description>&lt;div style="line-height: normal;"&gt;Hi!&lt;br /&gt;
&lt;br /&gt;
I use the charts of the toolkit and it works really great but i've just run into a problem.&lt;br /&gt;
The independent (Y) axis of my LineSeries has a lot of values so those are fading each other. Is it possible to don't show all the values on the axis but for example every 5th of them?&lt;br /&gt;
I tried to modify the source code but sadly I was not able to reach my goal.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>Thraeyll</author><pubDate>Tue, 23 Apr 2013 08:52:36 GMT</pubDate><guid isPermaLink="false">New Post: LineSeries Y axis values 20130423085236A</guid></item><item><title>New Post: Binding chart to observable collection and removing items</title><link>http://winrtxamltoolkit.codeplex.com/discussions/402715</link><description>&lt;div style="line-height: normal;"&gt;Hello and great toolkit! Thank you.&lt;br /&gt;
I do not have problems with animations but i have noticed that if i am switching between databound Lineseries in xaml and one does not contain any items, the line is not removed from the chart although the datapoints are hidden. &lt;br /&gt;
I worked around this by adding a 0 value datapoint in the observablecollection if the count is 0 and reassigning the itemssource in code behind.&lt;br /&gt;
I assume this is a bug. Could I be notified when a fix is implemented? or am I doing something wrong?&lt;br /&gt;
&lt;br /&gt;
Thank you!! :-)&lt;br /&gt;
&lt;/div&gt;</description><author>albdvm</author><pubDate>Sun, 21 Apr 2013 16:56:13 GMT</pubDate><guid isPermaLink="false">New Post: Binding chart to observable collection and removing items 20130421045613P</guid></item><item><title>New Post: Replace `Page` with `WinRTXamlToolkit.Controls.AlternativePage`</title><link>http://winrtxamltoolkit.codeplex.com/discussions/441057</link><description>&lt;div style="line-height: normal;"&gt;I'm trying to replace a &lt;code&gt;Page&lt;/code&gt; with an &lt;code&gt;WinRTXamlToolkit.Controls.AlternativePage&lt;/code&gt;, but I'm running into an issue where calling rootFrame.Navigate fails. More details here:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://stackoverflow.com/questions/16131740/replace-page-with-winrtxamltoolkit-controls-alternativepage?noredirect=1#comment23043651_16131740" rel="nofollow"&gt;http://stackoverflow.com/questions/16131740/replace-page-with-winrtxamltoolkit-controls-alternativepage?noredirect=1#comment23043651_16131740&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Any ideas what may be going wrong?&lt;br /&gt;
&lt;/div&gt;</description><author>zen6ox</author><pubDate>Sun, 21 Apr 2013 14:19:18 GMT</pubDate><guid isPermaLink="false">New Post: Replace `Page` with `WinRTXamlToolkit.Controls.AlternativePage` 20130421021918P</guid></item><item><title>New Post: Charting: Would be a good idea to allow multiple stacked column series per entry.</title><link>http://winrtxamltoolkit.codeplex.com/discussions/441056</link><description>&lt;div style="line-height: normal;"&gt;It should be possible to have multiple column stacks side by side per entry, Thomas Guilbault showed how here:&lt;br /&gt;
&lt;a href="http://www.codeproject.com/Articles/237275/Grouping-with-StackedColumnSeries-Charts" rel="nofollow"&gt;http://www.codeproject.com/Articles/237275/Grouping-with-StackedColumnSeries-Charts&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>BrianDT</author><pubDate>Sun, 21 Apr 2013 13:13:07 GMT</pubDate><guid isPermaLink="false">New Post: Charting: Would be a good idea to allow multiple stacked column series per entry. 20130421011307P</guid></item><item><title>New Post: Field Validation Always Loads as Invalid</title><link>http://winrtxamltoolkit.codeplex.com/discussions/440780</link><description>&lt;div style="line-height: normal;"&gt;When I add a field validation extension of NonEmpty to a TextBox and bind to a value (or even put some static text in the Text property), the box displays as invalid until I edit the text in the box.&lt;br /&gt;
As a test, I set the validation type to Any changed it to NonEmpty after a button press.  This shows the proper validation result.  Something similar can be seen in the designer if you have text in the text box - when it is first loaded it shows as invalid, but if you do something to cause a change and the designer view updates, it shows as valid.&lt;br /&gt;
&lt;br /&gt;
Is there an issue with validation when the control is initially loaded, or am I doing something wrong?&lt;br /&gt;
&lt;/div&gt;</description><author>kruzty</author><pubDate>Thu, 18 Apr 2013 14:33:47 GMT</pubDate><guid isPermaLink="false">New Post: Field Validation Always Loads as Invalid 20130418023347P</guid></item><item><title>New Post: NumericUpDown can not bind Value</title><link>http://winrtxamltoolkit.codeplex.com/discussions/440694</link><description>&lt;div style="line-height: normal;"&gt;oh, just found it need to  set Mode=TwoWay to make it work, but Slider don't need this.&lt;br /&gt;
&lt;br /&gt;
why don't NumericUpDown behave like other RangeBase controls?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;/div&gt;</description><author>yetsen</author><pubDate>Thu, 18 Apr 2013 09:50:57 GMT</pubDate><guid isPermaLink="false">New Post: NumericUpDown can not bind Value 20130418095057A</guid></item><item><title>New Post: NumericUpDown can not bind Value</title><link>http://winrtxamltoolkit.codeplex.com/discussions/440694</link><description>&lt;div style="line-height: normal;"&gt;NumericUpDown seems to be unable to bind, e.g. the following code won't work&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;ctrl:NumericUpDown Value=&amp;quot;{Binding Attack}&amp;quot; /&amp;gt; &lt;/code&gt;&lt;/pre&gt;

but if you change NumericUpDown to Slider, it works&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;Slider Value=&amp;quot;{Binding Attack}&amp;quot;/&amp;gt;&lt;/code&gt;&lt;/pre&gt;

what am I missing?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;/div&gt;</description><author>yetsen</author><pubDate>Thu, 18 Apr 2013 02:47:11 GMT</pubDate><guid isPermaLink="false">New Post: NumericUpDown can not bind Value 20130418024711A</guid></item></channel></rss>