User Shunyata Kharg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T20:08:52Zhttp://stackoverflow.com/feeds/user/23724http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/910869/refresh-silverlight-usercontrol-via-xaml/925102#9251020Answer by Shunyata Kharg for Refresh Silverlight UserControl via XAMLShunyata Kharg2009-05-29T09:10:50Z2009-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-xaml0Refresh Silverlight UserControl via XAMLShunyata Kharg2009-05-26T14:05:08Z2009-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><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">
<Grid x:Name="LayoutRoot" Background="Green">
<test:SilverlightControl1 Name="uControl1">
<test:SilverlightControl1.Composite>
<test:Composite Color="Yellow"/>
</test:SilverlightControl1.Composite>
</test:SilverlightControl1>
</Grid>
</UserControl>
</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-xaml0Refresh WPF UserControl via XAMLShunyata Kharg2009-05-27T16:32:21Z2009-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><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">
<test:UserControl1 Name="uControl1">
<test:UserControl1.Composite>
<test:Composite Color="Green"/>
</test:UserControl1.Composite>
</test:UserControl1>
</Window>
</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-x641new .net floating point types for x64?Shunyata Kharg2009-04-30T09:17:46Z2009-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-delphi6simple calculation, different results in c# and delphiShunyata Kharg2009-04-29T15:55:43Z2009-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-object1Upcasting to a generic object from system.objectShunyata Kharg2009-02-17T11:20:42Z2009-02-17T11:26:19Z
<p>Hello!</p>
<p>I have some simple code which demonstrates my problem:</p>
<pre><code>private void InitializeOther()
{
List<Foo> list = new List<Foo>();
Casting(list);
}
//in the "real" case I have no knowledge of o, other than it could be a List<>
private void Casting(object o)
{
Type t = o.GetType();
while (t.BaseType != typeof(Object))
{
if (t.IsGenericType && typeof(List<>) == t.GetGenericTypeDefinition())
{
//now I know that o is of type List<>. How can I now access List<> 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<T></code>, but now I want to be able to access <code>List<T></code> members on o, which means casting it up to <code>List<Foo></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-window0Custom properties in XAML of System.Windows.WindowShunyata Kharg2009-01-02T15:54:43Z2009-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><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">
<test:UserControl1 Name="uControl1" Composite.Color="Blue">
</test:UserControl1>
</Window>
</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#2264090Answer by Shunyata Kharg for Tools for PHP code refactoringShunyata Kharg2008-10-22T15:52:19Z2008-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-firing2Initialized event of WPF UserControl not firing.Shunyata Kharg2008-10-10T10:33:25Z2008-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
{
/// <summary>
/// Interaction logic for UserControl1.xaml
/// </summary>
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><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">
<Grid>
<mc:UserControl1 Margin="0,0,0,0" Name="uControl1" Initialized="uControl1_Initialized"/>
</Grid>
</Window>
</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-beta1Lazy initialization causing System.ArgumentException in Silverlight 2.0 betaShunyata Kharg2008-10-09T10:12:55Z2008-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 < 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#1876991Answer by Shunyata Kharg for Lazy initialization causing System.ArgumentException in Silverlight 2.0 betaShunyata Kharg2008-10-09T15:08:16Z2008-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#15799737Answer by Shunyata Kharg for Do you have a hobby development project?Shunyata Kharg2008-10-01T14:48:37Z2008-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#1524210Answer by Shunyata Kharg for tStringList passing in C# to Delphi DLLShunyata Kharg2008-09-30T09:48:34Z2008-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#916879Comment by Shunyata Kharg on Refresh WPF UserControl via XAMLShunyata Kharg2009-05-28T14:27:09Z2009-05-28T14:27:09ZThat 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#919410Comment by Shunyata Kharg on Refresh WPF UserControl via XAMLShunyata Kharg2009-05-28T07:57:40Z2009-05-28T07:57:40ZThanks 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 "MFC" 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#916879Comment by Shunyata Kharg on Refresh WPF UserControl via XAMLShunyata Kharg2009-05-28T07:50:27Z2009-05-28T07:50:27ZThanks 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#910956Comment by Shunyata Kharg on Refresh Silverlight UserControl via XAMLShunyata Kharg2009-05-26T15:11:02Z2009-05-26T15:11:02ZThanks 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#910956Comment by Shunyata Kharg on Refresh Silverlight UserControl via XAMLShunyata Kharg2009-05-26T14:36:11Z2009-05-26T14:36:11ZThanks 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#806077Comment by Shunyata Kharg on new .net floating point types for x64?Shunyata Kharg2009-04-30T11:10:03Z2009-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#806077Comment by Shunyata Kharg on new .net floating point types for x64?Shunyata Kharg2009-04-30T09:57:01Z2009-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#806077Comment by Shunyata Kharg on new .net floating point types for x64?Shunyata Kharg2009-04-30T09:28:25Z2009-04-30T09:28:25ZThanks 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#803145Comment by Shunyata Kharg on simple calculation, different results in c# and delphiShunyata Kharg2009-04-29T18:50:04Z2009-04-29T18:50:04ZThanks 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#803151Comment by Shunyata Kharg on simple calculation, different results in c# and delphiShunyata Kharg2009-04-29T18:46:48Z2009-04-29T18:46:48ZThank you, that explains the difference in behaviour.http://stackoverflow.com/questions/556358/upcasting-to-a-generic-object-from-system-object/556374#556374Comment by Shunyata Kharg on Upcasting to a generic object from system.objectShunyata Kharg2009-02-17T11:35:13Z2009-02-17T11:35:13ZOk, thanks, method invocation it is thenhttp://stackoverflow.com/questions/407210/custom-properties-in-xaml-of-system-windows-window/407396#407396Comment by Shunyata Kharg on Custom properties in XAML of System.Windows.WindowShunyata Kharg2009-01-02T19:42:32Z2009-01-02T19:42:32ZThanks 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/…</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#190824Comment by Shunyata Kharg on Initialized event of WPF UserControl not firing.Shunyata Kharg2008-10-10T11:08:13Z2008-10-10T11:08:13ZThanks David. Would you consider this a WPF defect?http://stackoverflow.com/questions/186634/lazy-initialization-causing-system-argumentexception-in-silverlight-2-0-beta/188301#188301Comment by Shunyata Kharg on Lazy initialization causing System.ArgumentException in Silverlight 2.0 betaShunyata Kharg2008-10-09T19:05:49Z2008-10-09T19:05:49ZWell, 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#187228Comment by Shunyata Kharg on Lazy initialization causing System.ArgumentException in Silverlight 2.0 betaShunyata Kharg2008-10-09T14:24:20Z2008-10-09T14:24:20ZI see. At least I'm not the only one to have experienced this! Thank you for your time!