User Shunyata Kharg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T20:08:52Z http://stackoverflow.com/feeds/user/23724 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/910869/refresh-silverlight-usercontrol-via-xaml/925102#925102 0 Answer by Shunyata Kharg for Refresh Silverlight UserControl via XAML Shunyata Kharg 2009-05-29T09:10:50Z 2009-05-29T09:10:50Z <p>The solution was two-fold. Firstly to make changes in the LayoutUpdated event rather than the Loaded event and secondly to subscribe to the PropertyChangedCallback of the PropertyMetadata. Here's the complete working code:</p> <pre><code> public partial class SilverlightControl1 : UserControl { public SilverlightControl1() { InitializeComponent(); this.LayoutUpdated += new EventHandler(SilverlightControl1_LayoutUpdated); Composite = new Composite(); } void SilverlightControl1_LayoutUpdated(object sender, EventArgs e) { Composite.Width = this.Width / 2.0; Composite.Height = this.Height / 2.0; if (!this.LayoutRoot.Children.Contains(Composite)) this.LayoutRoot.Children.Add(Composite); } public Composite Composite { get; set; } } public class Composite : ContentControl { private Grid grid; private Canvas canvas; public Composite() { if (grid == null) grid = new Grid(); if (canvas == null) canvas = new Canvas(); if (!grid.Children.Contains(canvas)) grid.Children.Add(canvas); Content = grid; this.LayoutUpdated += new EventHandler(Composite_LayoutUpdated); } void Composite_LayoutUpdated(object sender, EventArgs e) { if (rectangle == null) rectangle = new Rectangle(); Canvas.SetTop(rectangle, 0); Canvas.SetLeft(rectangle, 0); rectangle.Fill = new SolidColorBrush(Color); rectangle.Width = Width; rectangle.Height = Height; if (!canvas.Children.Contains(rectangle)) canvas.Children.Add(rectangle); } public static readonly DependencyProperty ColorProperty = DependencyProperty.Register("Color", typeof(Color), typeof(Composite), new PropertyMetadata(Colors.Red, new PropertyChangedCallback(OnColorPropertyChanged))); private static void OnColorPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { Composite comp = (Composite)d; comp.InvalidateArrange(); } private Rectangle rectangle; public Color Color { get { return (Color)GetValue(ColorProperty); } set { SetValue(ColorProperty, value); } } } </code></pre> http://stackoverflow.com/questions/910869/refresh-silverlight-usercontrol-via-xaml 0 Refresh Silverlight UserControl via XAML Shunyata Kharg 2009-05-26T14:05:08Z 2009-05-29T09:10:50Z <p>Hello!</p> <p>I'm using the lastest version of Silverlight 2.0 within Visual Studio 2008. I have a simple Silverlight UserControl with the following code:</p> <pre><code> public partial class SilverlightControl1 : UserControl { public SilverlightControl1() { InitializeComponent(); this.Loaded += new RoutedEventHandler(SilverlightControl1_Loaded); Composite = new Composite(); } void SilverlightControl1_Loaded(object sender, RoutedEventArgs e) { Composite.Width = this.Width / 2.0; Composite.Height = this.Height / 2.0; if (!this.LayoutRoot.Children.Contains(Composite)) this.LayoutRoot.Children.Add(Composite); } public Composite Composite { get; set; } } public class Composite : ContentControl { private Grid grid; private Canvas canvas; public Composite() { if (grid == null) grid = new Grid(); if (canvas == null) canvas = new Canvas(); if (!grid.Children.Contains(canvas)) grid.Children.Add(canvas); Content = grid; this.Loaded += new RoutedEventHandler(Composite_Loaded); } private Rectangle rectangle; void Composite_Loaded(object sender, RoutedEventArgs e) { if (rectangle == null) rectangle = new Rectangle(); Canvas.SetTop(rectangle, 0); Canvas.SetLeft(rectangle, 0); rectangle.Fill = new SolidColorBrush(Color); rectangle.Width = Width; rectangle.Height = Height; if (!canvas.Children.Contains(rectangle)) canvas.Children.Add(rectangle); } public Color Color { get; set; } } </code></pre> <p>I then use this UserControl in a Silverlight application, the XAML of the page looking like this:</p> <pre><code>&lt;UserControl x:Class="SilverlightApplication1.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:test="clr-namespace:SilverlightClassLibrary1;assembly=SilverlightClassLibrary1" Width="400" Height="300"&gt; &lt;Grid x:Name="LayoutRoot" Background="Green"&gt; &lt;test:SilverlightControl1 Name="uControl1"&gt; &lt;test:SilverlightControl1.Composite&gt; &lt;test:Composite Color="Yellow"/&gt; &lt;/test:SilverlightControl1.Composite&gt; &lt;/test:SilverlightControl1&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>My question is: what code do I have to add to the above so that by changing "Composite Color" to something other than Yellow and hitting the return button, the UserControl automatically refreshes? As the code is, the only way to refresh the UserControl is by moving the Slider bar within the VS2008 IDE which changes the percentage zoom of the Silverlight Page. A side question, although of lesser importance to the above question, is: with the code as it is above, why can't I change the "Background" color of the LayoutRoot? If I remove my UserControl it works as expected.</p> <p>Many thanks for any pointers which help me understand what is going on here!</p> http://stackoverflow.com/questions/916752/refresh-wpf-usercontrol-via-xaml 0 Refresh WPF UserControl via XAML Shunyata Kharg 2009-05-27T16:32:21Z 2009-05-28T12:59:35Z <p>Hello!</p> <p>I'm using WPF within Visual Studio 2008. I have a simple WPF UserControl with the following code:</p> <pre><code> public partial class UserControl1 : UserControl { public UserControl1() { InitializeComponent(); Composite = new Composite(); } protected override void OnRender(DrawingContext drawingContext) { //LayoutRoot is name of default Grid instance if (!LayoutRoot.Children.Contains(Composite)) { LayoutRoot.Children.Add(Composite); } } public Composite Composite { get; set; } } public class Composite : ContentControl { protected override void OnRender(DrawingContext drawingContext) { drawingContext.DrawRectangle(new SolidColorBrush(Color), new Pen(Brushes.Black, 1.0), new Rect(RenderSize)); } public Color Color { get; set; } } </code></pre> <p>I then use this UserControl in a WPF application, the XAML of the page looking like this:</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:test="clr-namespace:WpfControlLibrary1;assembly=WpfControlLibrary1" Title="Window1" Height="500" Width="700" Background="AliceBlue"&gt; &lt;test:UserControl1 Name="uControl1"&gt; &lt;test:UserControl1.Composite&gt; &lt;test:Composite Color="Green"/&gt; &lt;/test:UserControl1.Composite&gt; &lt;/test:UserControl1&gt; &lt;/Window&gt; </code></pre> <p>My question is: what code do I have to add to the above so that by changing "Composite Color" to something other than Green and hitting the return button, the UserControl automatically refreshes? The behaviour I'm looking for is what happens when you change the Background of Window1 to a color other than AliceBlue and hit return.</p> <p>When I run the code the correct color is seen, the problem is with the refresh at designtime via XAML.</p> <p>Many thanks for any pointers which help me understand what is going on here!</p> http://stackoverflow.com/questions/806064/new-net-floating-point-types-for-x64 1 new .net floating point types for x64? Shunyata Kharg 2009-04-30T09:17:46Z 2009-04-30T09:22:38Z <p>Hello!</p> <p>Does anybody know if there are any? I would be interested in a .net floating point type with the range of a double (or greater) combined with the precision of a decimal (or greater). Are there any planned? Anybody interested in speculating as to the usefulness or practicality of a new high-precision, high-range floating point type on x64?</p> http://stackoverflow.com/questions/803042/simple-calculation-different-results-in-c-and-delphi 6 simple calculation, different results in c# and delphi Shunyata Kharg 2009-04-29T15:55:43Z 2009-04-29T17:08:36Z <p>Hello,</p> <p>The question is, why do these code snippets give different results?</p> <pre><code>private void InitializeOther() { double d1, d2, d3; int i1; d1 = 4.271343859532459e+18; d2 = 4621333065.0; i1 = 5; d3 = (i1 * d1) - Utils.Sqr(d2); MessageBox.Show(d3.ToString()); } </code></pre> <p>and</p> <pre><code>procedure TForm1.InitializeOther; var d1, d2, d3 : Double; i1 : Integer; begin d1:=4.271343859532459e+18; d2:=4621333065.0; i1:=5; d3:=i1*d1-Sqr(d2); ShowMessage(FloatToStr(d3)); end; </code></pre> <p>The Delphi code gives me 816, while the c# code gives me 0. Using a calculator, I get 775. Can anybody please give me a detailed explanation?</p> <p>Many thanks!</p> http://stackoverflow.com/questions/556358/upcasting-to-a-generic-object-from-system-object 1 Upcasting to a generic object from system.object Shunyata Kharg 2009-02-17T11:20:42Z 2009-02-17T11:26:19Z <p>Hello!</p> <p>I have some simple code which demonstrates my problem:</p> <pre><code>private void InitializeOther() { List&lt;Foo&gt; list = new List&lt;Foo&gt;(); Casting(list); } //in the "real" case I have no knowledge of o, other than it could be a List&lt;&gt; private void Casting(object o) { Type t = o.GetType(); while (t.BaseType != typeof(Object)) { if (t.IsGenericType &amp;&amp; typeof(List&lt;&gt;) == t.GetGenericTypeDefinition()) { //now I know that o is of type List&lt;&gt;. How can I now access List&lt;&gt; members from o? break; } t = t.BaseType; } } </code></pre> <p>So, I can be sure that object o is of (or derived) from <code>List&lt;T&gt;</code>, but now I want to be able to access <code>List&lt;T&gt;</code> members on o, which means casting it up to <code>List&lt;Foo&gt;</code>. In my "real" case, I have no knowledge of Foo.</p> <p>I'm pretty sure it can be done and if you know how to do it I'd be very grateful if you could share your knowledge with me!</p> http://stackoverflow.com/questions/407210/custom-properties-in-xaml-of-system-windows-window 0 Custom properties in XAML of System.Windows.Window Shunyata Kharg 2009-01-02T15:54:43Z 2009-01-02T16:51:08Z <p>Hello!</p> <p>I've got a very simple WPF UserControl that looks like this:</p> <pre><code>namespace WpfControlLibrary1 { public partial class UserControl1 : UserControl { public UserControl1() { InitializeComponent(); Composite = new Composite(); Composite.Color = Colors.Red; } protected override void OnRender(DrawingContext drawingContext) { Draw(drawingContext, new Rect(RenderSize)); } public void Draw(DrawingContext g, Rect rect) { Composite.Draw(g, rect); } public Composite Composite { get; set; } } public class Composite { public void Draw(DrawingContext g, Rect rect) { g.DrawRectangle(new SolidColorBrush(Color), new Pen(Brushes.Black, 1.0), rect); } public Color Color { get; set; } } } </code></pre> <p>However, when I try to do this in the XAML of the Window in which the UserControl is sitting:</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window2" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:test="clr-namespace:WpfControlLibrary1;assembly=WpfControlLibrary1" Title="Window2" Height="500" Width="700"&gt; &lt;test:UserControl1 Name="uControl1" Composite.Color="Blue"&gt; &lt;/test:UserControl1&gt; &lt;/Window&gt; </code></pre> <p>I get the following errors:</p> <pre><code>Error 1 The attachable property 'Color' was not found in type 'Composite'. Error 2 The property 'Composite.Color' does not exist in XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'. </code></pre> <p>There must be simple way to get the above to work, but I'm afraid I haven't been able to find any relevant info on the subject. Can anybody please give me a pointer or two?</p> <p>Many thanks!</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/226409#226409 0 Answer by Shunyata Kharg for Tools for PHP code refactoring Shunyata Kharg 2008-10-22T15:52:19Z 2008-10-22T15:52:19Z <p>I read that the IDE Delphi for PHP will have refactoring capabilities in the release codenamed Crocodile, scheduled for early 2009. See <a href="http://dn.codegear.com/article/37662" rel="nofollow">this link</a> for details. </p> http://stackoverflow.com/questions/190749/initialized-event-of-wpf-usercontrol-not-firing 2 Initialized event of WPF UserControl not firing. Shunyata Kharg 2008-10-10T10:33:25Z 2008-10-10T12:25:41Z <p>Hello,</p> <p>I've got a very simple WPF UserControl that looks like this:</p> <pre><code>namespace MyUserControl { /// &lt;summary&gt; /// Interaction logic for UserControl1.xaml /// &lt;/summary&gt; public partial class UserControl1 : UserControl { public UserControl1() { InitializeComponent(); } protected override void OnRender(DrawingContext drawingContext) { Rect rect = new Rect(RenderSize); drawingContext.DrawRectangle(Brushes.AliceBlue, new Pen(Brushes.Red, 1), rect); base.OnRender(drawingContext); } } } </code></pre> <p>I then use it in the XAML of a standard WPF window like this:</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="clr-namespace:MyUserControl;assembly=MyUserControl" Title="Window1" Height="351" Width="496"&gt; &lt;Grid&gt; &lt;mc:UserControl1 Margin="0,0,0,0" Name="uControl1" Initialized="uControl1_Initialized"/&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>with the code behind of the above WPF Window looks like this: </p> <pre><code>private void uControl1_Initialized(object sender, EventArgs e) { MessageBox.Show("Hello!"); } </code></pre> <p>Unfortunately the Initialized event is never fired. Can anybody please tell me why?</p> <p>Many thanks!</p> http://stackoverflow.com/questions/186634/lazy-initialization-causing-system-argumentexception-in-silverlight-2-0-beta 1 Lazy initialization causing System.ArgumentException in Silverlight 2.0 beta Shunyata Kharg 2008-10-09T10:12:55Z 2008-10-09T17:27:30Z <p>Hello!</p> <p>I've got the following example running in a simple Silverlight page:</p> <pre><code>public Page() { InitializeComponent(); InitializeOther(); } private DoubleCollection dashes; public DoubleCollection Dashes { get { //dashes = new DoubleCollection(); //works ok //dashes.Add(2.0); //dashes.Add(2.0); if (dashes == null) { dashes = new DoubleCollection(); //causes exception dashes.Add(2.0); dashes.Add(2.0); } return dashes; } set { dashes = value; } } private void InitializeOther() { Line line; for (int i = 0; i &lt; 10; i++) { line = new Line(); line.Stroke = new SolidColorBrush(Colors.Blue); line.StrokeDashArray = Dashes; //exception thrown here line.X1 = 10; line.Y2 = 10; line.X2 = 400; line.Y2 = 10 + (i * 40); canvas1.Children.Add(line); } } </code></pre> <p>The above code throws a System.ArgumentException on the line marked. One solution to the problem is also marked in the example.</p> <p>Does anybody know if this problem is related to the fact that the property System.Windows.Shapes.Shape.StrokeDashArray is a dependency property? </p> <p>Many thanks for any hints!</p> http://stackoverflow.com/questions/186634/lazy-initialization-causing-system-argumentexception-in-silverlight-2-0-beta/187699#187699 1 Answer by Shunyata Kharg for Lazy initialization causing System.ArgumentException in Silverlight 2.0 beta Shunyata Kharg 2008-10-09T15:08:16Z 2008-10-09T15:08:16Z <p>Thank you for your answers and comments.</p> <p>I can run exactly the same code in a WPF application and it does not fail. For me, this is a clear indication that it is a Silverlight bug. I don't now think it has anything to do with dependency properties.</p> http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157997#157997 37 Answer by Shunyata Kharg for Do you have a hobby development project? Shunyata Kharg 2008-10-01T14:48:37Z 2008-10-01T14:48:37Z <p>No, I don't and at the moment I have no interest in starting one.</p> <p>I am a professional developer with over 10 years of experience and I find that the programming I do at work satisfies my programming itch.</p> <p>Of course, this may mean that for some people here I am not a "good" programmer. But then is a "good" doctor one who also treats patients for free outside of his working hours? There are many professionals who are competent at what they do without also doing what they do as a hobby outside of their work. There are a few professionals who are excellent or even brilliant at what they do and do what they do as a hobby outside of their work. </p> <p>Personally I think that a company who is looking for professional programmers who also program for a hobby is looking for an "excellent" programmer, not just a "good" programmer. The starting salary should reflect this excellence!</p> http://stackoverflow.com/questions/152261/tstringlist-passing-in-c-to-delphi-dll/152421#152421 0 Answer by Shunyata Kharg for tStringList passing in C# to Delphi DLL Shunyata Kharg 2008-09-30T09:48:34Z 2008-09-30T09:57:04Z <p>As Hemant Jangid said, you should easily be able to do this by compiling your code as a .NET dll and then referring to that assembly in your c# project.</p> <p>Of course, you'll only be able to do this if the version of Delphi you have has Delphi.NET.</p> http://stackoverflow.com/questions/916752/refresh-wpf-usercontrol-via-xaml/916879#916879 Comment by Shunyata Kharg on Refresh WPF UserControl via XAML Shunyata Kharg 2009-05-28T14:27:09Z 2009-05-28T14:27:09Z That now works, thank you Nicholas! Setting the defaultValue parameter to null only seems to be a problem if you define a flags parameter, otherwise null works just fine. Anyhow, I can now mark your reply as the answer. Thanks again! http://stackoverflow.com/questions/916752/refresh-wpf-usercontrol-via-xaml/919410#919410 Comment by Shunyata Kharg on Refresh WPF UserControl via XAML Shunyata Kharg 2009-05-28T07:57:40Z 2009-05-28T07:57:40Z Thanks for the tip, Paul. The control I work on uses large datasets which generally are too big to type into XAML at designtime. This means that I have to create large numbers of objects dynamically at runtime, something that's perfectly feasible to do in an &quot;MFC&quot; way using WPF. However, I would also like to introduce some more WPF advantages to this model, hence my inheriting these objects from ContentControl and getting each object to render itself, rather than passing the DrawingContext around from one to the other. http://stackoverflow.com/questions/916752/refresh-wpf-usercontrol-via-xaml/916879#916879 Comment by Shunyata Kharg on Refresh WPF UserControl via XAML Shunyata Kharg 2009-05-28T07:50:27Z 2009-05-28T07:50:27Z Thanks Nicholas, but this code produces a System.Windows.Markup.XamlParseException error when applied to my code example. If I take out the FrameworkPropertyMetadataOptions.AffectsRender parameter from the FrameworkPropertyMetadata constructor then I don't get the error but my problem isn't solved. http://stackoverflow.com/questions/910869/refresh-silverlight-usercontrol-via-xaml/910956#910956 Comment by Shunyata Kharg on Refresh Silverlight UserControl via XAML Shunyata Kharg 2009-05-26T15:11:02Z 2009-05-26T15:11:02Z Thanks Correl! I have the Color property implemented as a Dependency property using DependencyObject.GetValue and SetValue. When I set the fill of the Rectangle, the Color property is therefore already binded to the dependency property, no? http://stackoverflow.com/questions/910869/refresh-silverlight-usercontrol-via-xaml/910956#910956 Comment by Shunyata Kharg on Refresh Silverlight UserControl via XAML Shunyata Kharg 2009-05-26T14:36:11Z 2009-05-26T14:36:11Z Thanks for the answer, Correl! I've implemented the Composite and Color properties as Dependency properties, as you suggested, but unfortunately this hasn't made any difference to the problem! http://stackoverflow.com/questions/806064/new-net-floating-point-types-for-x64/806077#806077 Comment by Shunyata Kharg on new .net floating point types for x64? Shunyata Kharg 2009-04-30T11:10:03Z 2009-04-30T11:10:03Z @Marc: Ok, I see, and thanks for the info. Am I correct in thinking, then, that such a BigFloat type could perform better on x64 than x86 given the necessary CLI changes? http://stackoverflow.com/questions/806064/new-net-floating-point-types-for-x64/806077#806077 Comment by Shunyata Kharg on new .net floating point types for x64? Shunyata Kharg 2009-04-30T09:57:01Z 2009-04-30T09:57:01Z @Richard: Thanks for the info. I would welcome some sort of BigFloat in x86, I just thought that in x64 the performance overhead would be lower for such a beast. http://stackoverflow.com/questions/806064/new-net-floating-point-types-for-x64/806077#806077 Comment by Shunyata Kharg on new .net floating point types for x64? Shunyata Kharg 2009-04-30T09:28:25Z 2009-04-30T09:28:25Z Thanks for the answer. What's your opinion though: do you think that a new high-precision, high-range floating point type would be both feasible and useful for those working on the x64 platform on .net? http://stackoverflow.com/questions/803042/simple-calculation-different-results-in-c-and-delphi/803145#803145 Comment by Shunyata Kharg on simple calculation, different results in c# and delphi Shunyata Kharg 2009-04-29T18:50:04Z 2009-04-29T18:50:04Z Thanks for pointing this out to me! Decimals might be the answer in my situation, although the much narrower range and the possible performance overhead are making me think twice before using them. As this is rather a corner case in my app, I may be able to factor down the input doubles to stop this kind of calculation occuring. http://stackoverflow.com/questions/803042/simple-calculation-different-results-in-c-and-delphi/803151#803151 Comment by Shunyata Kharg on simple calculation, different results in c# and delphi Shunyata Kharg 2009-04-29T18:46:48Z 2009-04-29T18:46:48Z Thank you, that explains the difference in behaviour. http://stackoverflow.com/questions/556358/upcasting-to-a-generic-object-from-system-object/556374#556374 Comment by Shunyata Kharg on Upcasting to a generic object from system.object Shunyata Kharg 2009-02-17T11:35:13Z 2009-02-17T11:35:13Z Ok, thanks, method invocation it is then http://stackoverflow.com/questions/407210/custom-properties-in-xaml-of-system-windows-window/407396#407396 Comment by Shunyata Kharg on Custom properties in XAML of System.Windows.Window Shunyata Kharg 2009-01-02T19:42:32Z 2009-01-02T19:42:32Z Thanks Kent, that seems to work fine. I had understood from this URL <a href="http://msdn.microsoft.com/en-us/library/ms752059.aspx#properties" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> that the Attribute Syntax and the Property Element Syntax were interchangeable. Do you have a better link to explain the differences? http://stackoverflow.com/questions/190749/initialized-event-of-wpf-usercontrol-not-firing/190824#190824 Comment by Shunyata Kharg on Initialized event of WPF UserControl not firing. Shunyata Kharg 2008-10-10T11:08:13Z 2008-10-10T11:08:13Z Thanks David. Would you consider this a WPF defect? http://stackoverflow.com/questions/186634/lazy-initialization-causing-system-argumentexception-in-silverlight-2-0-beta/188301#188301 Comment by Shunyata Kharg on Lazy initialization causing System.ArgumentException in Silverlight 2.0 beta Shunyata Kharg 2008-10-09T19:05:49Z 2008-10-09T19:05:49Z Well, I was aware of the alternative as I said in my original post. I guess the point is that the code should work, but doesn't. In that sense I have no choice but to look into other ways of writing it :-) http://stackoverflow.com/questions/186634/lazy-initialization-causing-system-argumentexception-in-silverlight-2-0-beta/187228#187228 Comment by Shunyata Kharg on Lazy initialization causing System.ArgumentException in Silverlight 2.0 beta Shunyata Kharg 2008-10-09T14:24:20Z 2008-10-09T14:24:20Z I see. At least I'm not the only one to have experienced this! Thank you for your time!