User discorax - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T00:02:08Zhttp://stackoverflow.com/feeds/user/30408http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1725001/which-has-better-rendering-performance-stackpanel-or-canvastranslatetransform0Which has better rendering performance, Stackpanel or Canvas+TranslateTransform? WPF/Silverlightdiscorax2009-11-12T20:04:57Z2009-11-12T20:31:19Z
<p>I always use a Canvas when I'm laying out my visuals usually because I will need adjust the RenderTransform.TranslateTransform to animate in some way. A colleague recently told me that unless I explicitly need to animate I should always use the A Stackpanel because it is faster than a RenderTransform.TranslateTransform when laying out objects to the visual.</p>
<p>Is this true? </p>
<p>Anyone have any data either way?</p>
http://stackoverflow.com/questions/1684489/how-do-you-make-sure-wpf-releases-large-bitmapsource-from-memory0How do you make sure WPF releases large BitmapSource from Memory?discorax2009-11-05T23:52:11Z2009-11-06T17:38:29Z
<p>System: Windows XP SP3, .NET 3.5, 4GB RAM, Dual 1.6gHz</p>
<p>I have a WPF application that loads and transitions (using Storyboard animations) extremely large PNGs. These PNGs are 8190x1080 in resolution. As the application runs it appears to cache the images and the system Memory slowly creeps up. Eventually it chokes the system and throws the OutOfMemoryException.</p>
<p>Here are the steps I am currently taking to try to solve this:</p>
<p>1)I am removing the BitmapSource objects from the app </p>
<p>2)I am setting the BitmapSource BitmapCacheOption to None when I load the BitmapSource</p>
<p>3)I am Freezing the BitmapSource once it's loaded. </p>
<p>4)I am deleting all references to the Image that uses the source as well as any references to the source itself.</p>
<p>5)Manually calling GC.Collect() after above steps have completed.</p>
<p>Hoping to figure out why WPF is hanging onto memory for these images and a possible solution to ensure that the memory used to load them is properly recovered.</p>
http://stackoverflow.com/questions/1548479/dispatchertimer-eating-up-cpu-over-time-causing-wpf-visual-not-rendering-properly1DispatcherTimer eating up CPU over time causing WPF visual not rendering properlydiscorax2009-10-10T17:01:07Z2009-10-14T12:56:13Z
<p>I have a WPF app that uses DispatcherTimer to update a clock tick.</p>
<p>However, after my application has been running for approx 6 hours the clocks hands angles no longer change. I have verified that the DispatcherTimer is still firing with Debug and that the angle values are still updating, however the screen render does not reflect the change.</p>
<p>I have also verified using WPFPerf tools Visual Profiler that the Unlabeled Time, Tick (Time Manager) and AnimatedRenderMessageHandler(Media Content) are all gradually growing until they are consuming nearly 80% of the CPU, however Memory is running stable.</p>
<p>The hHandRT.Angle is a reference to a RotateTransform </p>
<pre><code>hHandRT = new RotateTransform(_hAngle);
</code></pre>
<p>This code works perfectly for approx 5 hours of straight running but after that it delays and the angle change does not render to the screen. Any suggestions for how to troubleshoot this problem or any possible solutions you may know of. </p>
<p>.NET 3.5, Windows Vista SP1 or Windows XP SP3 (both show the same behavior)</p>
<p><strong>EDIT: Adding Clock Tick Function</strong></p>
<pre><code>//In Constructor
...
_dt = new DispatcherTimer();
_dt.Interval = new TimeSpan(0, 0, 1);
_dt.Tick += new EventHandler(Clock_Tick);
...
private void Clock_Tick(object sender, EventArgs e)
{
DateTime startTime = DateTime.UtcNow;
TimeZoneInfo tst = TimeZoneInfo.FindSystemTimeZoneById(_timeZoneId);
_now = TimeZoneInfo.ConvertTime(startTime, TimeZoneInfo.Utc, tst);
int hoursInMinutes = _now.Hour * 60 + _now.Minute;
int minutesInSeconds = _now.Minute * 60 + _now.Second;
_hAngle = (double)hoursInMinutes * 360 / 720;
_mAngle = (double)minutesInSeconds * 360 / 3600;
_sAngle = (double)_now.Second * 360 / 60;
// Use _sAngle to showcase more movement during Testing.
//hHandRT.Angle = _sAngle;
hHandRT.Angle = _hAngle;
mHandRT.Angle = _mAngle;
sHandRT.Angle = _sAngle;
//DSEffect
// Add Shadows to Hands creating a UNIFORM light
//hands.Effect = textDropShadow;
}
</code></pre>
<p>Along the lines of too much happening in the clock tick, I'm currently trying this adjustment to see if it helps. Too bad it takes 5 hours for the bug to manifest itself :(</p>
<pre><code> //DateTime startTime = DateTime.UtcNow;
//TimeZoneInfo tst = TimeZoneInfo.FindSystemTimeZoneById(_timeZoneId);
//_now = TimeZoneInfo.ConvertTime(startTime, TimeZoneInfo.Utc, tst);
_now = _now.AddSeconds(1);
</code></pre>
http://stackoverflow.com/questions/1529903/i-want-to-control-a-flash-video-swf-playing-automatically/1533138#15331380Answer by discorax for I want to control a flash video (swf) playing automaticallydiscorax2009-10-07T17:45:10Z2009-10-07T17:45:10Z<p>The autoplay parameter you are setting false is for the container swf NOT the internal video player.</p>
<p>As @Konrad said you'll need to adjust the player in the fla OR set flashVars to disable autoplay.</p>
<pre><code> <param name="flashvars"
value='config={"clip":{"url":"video.flv","autoPlay":false}}' />
</code></pre>
http://stackoverflow.com/questions/1236946/how-to-show-streaming-videos-in-flash-in-iphone-application/1528222#15282220Answer by discorax for How to show streaming videos in flash in iPhone applicationdiscorax2009-10-06T21:31:55Z2009-10-06T21:31:55Z<p>Adobe announced during their Keynote at MAX yesterday that you will be able to compile Flash for iPhone apps. They have some sample projects available on the <a href="http://labs.adobe.com/technologies/flashcs5/appsfor%5Fiphone/" rel="nofollow">Adobe labs site</a> </p>
<p>You can take those sample files and extend them to accomplish what you're looking for.</p>
<p>The native compile output from Flash Professional isn't going to be available until CS5.</p>
<p>Note: Flash is not native on the iPhone and will not run in browser. Also, apps will not have access to the video camera or the microphone.</p>
http://stackoverflow.com/questions/1528143/transparent-gif-help/1528168#15281681Answer by discorax for transparent gif helpdiscorax2009-10-06T21:22:02Z2009-10-06T21:22:02Z<p>As stated above GIF only has 1 bit opacity, meaning On or OFF, nothing in-between. That is the same as 8-bit PNG. </p>
<p>Assuming the reason you can't use .PNG is because you're required to to fall back and work in older version of Internet Explorer. Unforuntately there is no good way to make it work. There are <a href="http://www.hongkiat.com/blog/making-png-image-transparency-work-in-internet-explorer/" rel="nofollow">hacks</a> that you can use to get PNGs to work properly in IE6, but if you have to support all the way back to IE5 you're SOL.</p>
http://stackoverflow.com/questions/226356/displaying-time-zones-in-wpf-c-discover-daylight-savings-time-offset-1Displaying Time Zones in WPF/C#. Discover Daylight Savings Time Offsetdiscorax2008-10-22T15:41:07Z2009-09-29T19:44:31Z
<p>I am having trouble understanding how the System Registry can help me convert a DateTime object into the a corresponding TimeZone. I have an example that I've been trying to reverse engineer but I just can't follow the one critical step in which the UTCtime is offset depending on Daylight Savings Time.</p>
<p>I am using .NET 3.5 (thank god) but It's still baffling me.</p>
<p>Thanks</p>
<p>EDIT: Additional Information: This question was for use in a WPF application environment. The code snippet I left below took the answer example a step further to get exactly what I was looking for. </p>
http://stackoverflow.com/questions/1262770/wpf-add-page-w-functionality-into-a-window-at-runtime-as-xaml1WPF: Add Page w/functionality into a Window at runtime as XAMLdiscorax2009-08-11T20:37:07Z2009-09-29T06:15:55Z
<p>I have created a WPF app where I dynamicly build XAML elements using c# code and then add them to a root "container" grid. </p>
<p>What I'm trying to do is take advantage of the features in Blend and create some XAML Pages that have their own set of code behind logic, Storyboards, etc.</p>
<p>I want to load that XAML at runtime, however for some reason my approach is not working and I'm at a loss for why.</p>
<p>This what what I did before. In my root Window I create a new MyModule and add it to my contentRoot.</p>
<pre><code> myModule = new MyModule();
contentRoot.Children.Add(myModule );
</code></pre>
<p>(Approach that works) MyModule class extends Canvas and consists of a .XAML file and .CS code behind file. The XAML is just a root canvas, and the .CS has all the logic to create elements and add them to the root canvas. </p>
<p>When I use this same approach where MyModule is now extends Page nothing shows up. The XAML now has a lot of content in it including a Canvas.Resources Canvas.Triggers, and a bunch of other elements.</p>
<p>How can I load pre-created XAML content from a Class including the code behind logic at run time?</p>
http://stackoverflow.com/questions/226356/displaying-time-zones-in-wpf-c-discover-daylight-savings-time-offset/227072#2270724Answer by discorax for Displaying Time Zones in WPF/C#. Discover Daylight Savings Time Offsetdiscorax2008-10-22T18:44:40Z2009-09-28T18:40:50Z<p>Here is a code snippet in C# that I'm using in my WPF application. This will give you the current time (adjusted for Daylight Savings Time) for the time zone id you provide.</p>
<pre><code>// _timeZoneId is the String value found in the System Registry.
// You can look up the list of TimeZones on your system using this:
// ReadOnlyCollection<TimeZoneInfo> current = TimeZoneInfo.GetSystemTimeZones();
// As long as your _timeZoneId string is in the registry
// the _now DateTime object will contain
// the current time (adjusted for Daylight Savings Time) for that Time Zone.
string _timeZoneId = "Pacific Standard Time";
DateTime startTime = DateTime.UtcNow;
TimeZoneInfo tst = TimeZoneInfo.FindSystemTimeZoneById(_timeZoneId);
_now = TimeZoneInfo.ConvertTime(startTime, TimeZoneInfo.Utc, tst);
</code></pre>
<p>This is the code snippit I ended up with. Thanks for the help.</p>
http://stackoverflow.com/questions/831860/generate-bitmapsource-from-uielement/1297118#12971180Answer by discorax for Generate BitmapSource from UIElementdiscorax2009-08-18T23:27:56Z2009-08-18T23:27:56Z<p>Take a look at this for an alternate way to create a BitmapSource from a UIElement</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/fb84fbcb-fe36-45a7-bc1a-0dd0d0bb9fdb/" rel="nofollow">MSDN Thread</a></p>
<p>I have also been trying to get the VisualBrush to work without any luck which brought me to this thread.</p>
<pre><code>public static BitmapSource CreateBitmapSourceFromVisual(
Double width,
Double height,
Visual visualToRender,
Boolean undoTransformation)
{
if (visualToRender == null)
{
return null;
}
RenderTargetBitmap bmp = new RenderTargetBitmap((Int32)Math.Ceiling(width),
(Int32)Math.Ceiling(height),
96,
96,
PixelFormats.Pbgra32);
if (undoTransformation)
{
DrawingVisual dv = new DrawingVisual();
using (DrawingContext dc = dv.RenderOpen())
{
VisualBrush vb = new VisualBrush(visualToRender);
dc.DrawRectangle(vb, null, new Rect(new Point(), new Size(width, height)));
}
bmp.Render(dv);
}
else
{
bmp.Render(visualToRender);
}
return bmp;
}
</code></pre>
http://stackoverflow.com/questions/344737/sorting-xml-nodes-based-on-datetime-attribute-c-xpath3Sorting XML nodes based on DateTime attribute C#, XPathdiscorax2008-12-05T18:26:11Z2009-08-14T11:47:29Z
<p>I have a XML Structure that looks like this.</p>
<pre><code><sales>
<item name="Games" sku="MIC28306200" iCat="28"
sTime="11/26/2008 8:41:12 AM"
price="1.00" desc="Item Name" />
<item name="Games" sku="MIC28307100" iCat="28"
sTime="11/26/2008 8:42:12 AM"
price="1.00" desc="Item Name" />
...
</sales>
</code></pre>
<p>I am trying to find a way to SORT the nodes based on the sTime attribute which is a DateTime.ToString() value. The trick is I need to keep the Nodes in tact and for some reason I can't find a way to do that. I'm fairly certain that LINQ and XPath have a way to do it, but I'm stuck because I can't seem to sort based on DateTime.ToString() value.</p>
<pre><code>XPathDocument saleResults = new XPathDocument(@"temp/salesData.xml");
XPathNavigator navigator = saleResults.CreateNavigator();
XPathExpression selectExpression = navigator.Compile("sales/item/@sTime");
selectExpression.AddSort("@sTime",
XmlSortOrder.Descending,
XmlCaseOrder.None,
"",
XmlDataType.Number);
XPathNodeIterator nodeIterator = navigator.Select(selectExpression);
while( nodeIterator.MoveNext() )
{
string checkMe = nodeIterator.Current.Value;
}
</code></pre>
<p>I also need to maintain a pointer to the NODE to retrieve the values of the other attributes. </p>
<p>Perhaps this isn't a simple as I thought it would be.</p>
<p>Thanks.</p>
<p><strong>Solution</strong>: Here's what I ended up using. Taking the selected answer and the IComparable class this is how I get the XML nodes sorted based on the sTime attribute and then get the all the attributes into the appropriate Arrays to be used later.</p>
<pre><code> XPathDocument saleResults = new XPathDocument(@"temp/salesData.xml");
XPathNavigator navigator = saleResults.CreateNavigator();
XPathExpression selectExpression = navigator.Compile("sales/item");
XPathExpression sortExpr = navigator.Compile("@sTime");
selectExpression.AddSort(sortExpr, new DateTimeComparer());
XPathNodeIterator nodeIterator = navigator.Select(selectExpression);
int i = 0;
while (nodeIterator.MoveNext())
{
if (nodeIterator.Current.MoveToFirstAttribute())
{
_iNameList.SetValue(nodeIterator.Current.Value, i);
}
if (nodeIterator.Current.MoveToNextAttribute())
{
_iSkuList.SetValue(nodeIterator.Current.Value, i);
}
...
nodeIterator.Current.MoveToParent();
i++;
}
</code></pre>
http://stackoverflow.com/questions/1262770/wpf-add-page-w-functionality-into-a-window-at-runtime-as-xaml/1263161#12631610Answer by discorax for WPF: Add Page w/functionality into a Window at runtime as XAMLdiscorax2009-08-11T21:52:24Z2009-08-11T21:52:24Z<pre><code> FileStream xamlFile = new FileStream("Resources/News/NewsModuleCanvas.xaml", FileMode.Open, FileAccess.Read);
Canvas newsCanvas = (Canvas)XamlReader.Load(xamlFile);
contentRoot.Children.Add(newsCanvas);
</code></pre>
<p>Used this to load XAML, however this still does not give me the option of also adding the code behind logic.</p>
http://stackoverflow.com/questions/1158446/wpf-clickonce-file-issues-xbap-wpf-clickonce-gurus-in/1161355#11613551Answer by discorax for WPF ClickOnce file issues. (XBAP/WPF/ClickOnce Gurus in.)discorax2009-07-21T19:45:50Z2009-07-21T19:45:50Z<p>I ran into a problem with XML files publishing incorrectly using ClickOnce. I asked a similar question and got this answer <a href="http://stackoverflow.com/questions/256529/parsing-a-local-xml-document-in-wpf-works-in-debug-fails-once-published">on StackOverflow</a></p>
<blockquote>
<p>Please double check that your xml files really are being installed where you think they are.</p>
<p>In the publish settings you can change the setting for each xml file from data file to include. Your other files will already be set to include.</p>
<p>Note that the publish settings are independent of the build settings for the file.</p>
</blockquote>
<p>Maybe this will help you out.</p>
http://stackoverflow.com/questions/460242/interacting-with-actionscript-2-0-using-javascript/460267#4602672Answer by discorax for Interacting with actionscript 2.0 using javascriptdiscorax2009-01-20T06:26:02Z2009-02-20T21:49:08Z<p>The example you posted uses the ExternalInterface class to communicate from Flash to Javascript. You can add callbacks using the ExternalInterface but if you need to trigger a function from the DOM (HTML) that goes to FLASH.</p>
<p>OK, now to get values from Javascript to Flash there are a few options.<br />
You can set up a callback function using the ExternalInterface Class. Here is an example from Live Docs <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html#addCallback()" rel="nofollow">link text</a></p>
<p>If you need to call the Flash from Javascript without ANY Flash interaction (like to play a video or something), again you will use the ExternalInterface. Here is an AS3 example <a href="http://blog.topholt.com/2008/03/27/calling-actionscript-3-from-javascript/" rel="nofollow">link text</a></p>
<p>Here is an AS2 example to answer your question:</p>
<pre><code>//AS2
import flash.external.*;
function helloWorld():Void
{
//Do something
}
ExternalInterface.addCallback("myFunction", helloWorld);
// HTML
<script language="JavaScript">
flashObject.myFunction();
</ script>
...
<object id="flashObject"...>
...
<embed name="flashObject".../>
</object>
</code></pre>
http://stackoverflow.com/questions/529464/schedule-a-task-in-vista-system-restart1Schedule a Task in Vista - System Restartdiscorax2009-02-09T19:14:03Z2009-02-09T20:04:30Z
<p>Hello,</p>
<p>I am trying to write a system restart Task for Windows Vista. I'm a web developer by trade so I'm a little out of my element here. I have got into my OS and discovered Task Scheduler.</p>
<p>So far I've been able to set up some various tasks to run small WPF programs by calling the *.exe files. What I really need to do is set up a system restart at a specific time. 1 a.m. for example.</p>
<p>Is there a way to write a simple shell script that will force restart Windows Vista as a scheduled task?</p>
<p>My concern is that Vista typically asks to shut down programs when you hit restart, so I would want to make sure that it really is automatic requiring zero user interaction.</p>
<p>Any help, or links to examples would be greatly appreciated.</p>
<p>System: Windows Vista 32bit</p>
<p>Cheers,
Ryan</p>
<p><strong>Answer:</strong> Copy and Paste the code in the selected answer to a text file. </p>
<pre><code>shutdown -r -f -t 01
</code></pre>
<p>Save the file as a *.bat file. You can then select it in the Actions Tab of the Task Scheduler. Works like a charm.</p>
http://stackoverflow.com/questions/520747/how-to-increase-dpi-of-an-image-and-make-it-sharper/520933#5209330Answer by discorax for How to increase DPI of an image and make it sharper?discorax2009-02-06T16:16:18Z2009-02-06T16:16:18Z<p>I have written a "beginner" tutorial on how to get a printable screen capture.</p>
<p>This may not be exactly what you're looking for, but the principles are good. You can take a screen shot of your image and blow it up to a printable size.</p>
<p><a href="http://www.ryancdavidson.com/web/tt_screencaptoprint.php" rel="nofollow">http://www.ryancdavidson.com/web/tt_screencaptoprint.php</a></p>
<p>The trick that I've used is to convert your image to indexed color (as opposed to RGB) which can scale up and stay generally crisp. Then you can up the DPI in index color and finally convert back to RGB before you print.</p>
<p>Visit the site for a step-by-step.</p>
http://stackoverflow.com/questions/375940/find-frequency-of-values-in-an-array-or-xml-c2Find frequency of values in an Array or XML (C#)discorax2008-12-17T20:40:19Z2008-12-18T05:28:41Z
<p>I have an XML feed (which I don't control) and I am trying to figure out how to detect the volume of certain attribute values within the document.</p>
<p>I am also parsing the XML and separating attributes into Arrays (for other functionality) </p>
<p>Here is a sample of my XML</p>
<pre><code><items>
<item att1="ABC123" att2="uID" />
<item att1="ABC345" att2="uID" />
<item att1="ABC123" att2="uID" />
<item att1="ABC678" att2="uID" />
<item att1="ABC123" att2="uID" />
<item att1="XYZ123" att2="uID" />
<item att1="XYZ345" att2="uID" />
<item att1="XYZ678" att2="uID" />
</items>
</code></pre>
<p>I want to find the volume nodes based on each att1 value. Att1 value will change. Once I know the frequency of att1 values I need to pull the att2 value of that node.</p>
<p>I need to find the TOP 4 items and pull the values of their attributes.</p>
<p>All of this needs to be done in C# code behind.</p>
<p>If I was using Javascript I would create an associative array and have att1 be the key and the frequency be the value. But since I'm new to c# I don't know how to duplicate this in c#.</p>
<p>So I believe, first I need to find all unique att1 values in the XML. I can do this using:</p>
<pre><code>IEnumerable<string> uItems = uItemsArray.Distinct();
// Where uItemsArray is a collection of all the att1 values in an array
</code></pre>
<p>Then I get stuck on how I compare each unique att1 value to the whole document to get the volume stored in a variable or array or whatever data set. </p>
<p>Here is the snippet I ended up using:</p>
<pre><code> XDocument doc = XDocument.Load(@"temp/salesData.xml");
var topItems = from item in doc.Descendants("item")
select new
{
name = (string)item.Attribute("name"),
sku = (string)item.Attribute("sku"),
iCat = (string)item.Attribute("iCat"),
sTime = (string)item.Attribute("sTime"),
price = (string)item.Attribute("price"),
desc = (string)item.Attribute("desc")
} into node
group node by node.sku into grp
select new {
sku = grp.Key,
name = grp.ElementAt(0).name,
iCat = grp.ElementAt(0).iCat,
sTime = grp.ElementAt(0).sTime,
price = grp.ElementAt(0).price,
desc = grp.ElementAt(0).desc,
Count = grp.Count()
};
_topSellers = new SalesDataObject[4];
int topSellerIndex = 0;
foreach (var item in topItems.OrderByDescending(x => x.Count).Take(4))
{
SalesDataObject topSeller = new SalesDataObject();
topSeller.iCat = item.iCat;
topSeller.iName = item.name;
topSeller.iSku = item.sku;
topSeller.sTime = Convert.ToDateTime(item.sTime);
topSeller.iDesc = item.desc;
topSeller.iPrice = item.price;
_topSellers.SetValue(topSeller, topSellerIndex);
topSellerIndex++;
}
</code></pre>
<p>Thanks for all your help!</p>
http://stackoverflow.com/questions/342829/wpf-animations-in-a-user-control-learning-trying-to-understand-but-feeling-n/350119#3501191Answer by discorax for WPF - Animations in a user control, learning, trying to understand, but feeling n00bish.discorax2008-12-08T16:44:21Z2008-12-08T16:44:21Z<p>This works exactly how I would expect it to work. Let me know if you need more info about what I did. It comes down to how XAML Storyboards behave. They can be a little tricky at first because the Begin/Stop/Pause/Resume behavior isn't exactly obvious. You can't Pause/Resume unless it's already running, and (in Silverlight) you can't Begin a Storyboard again UNLESS you've actually STOP it. So the loop function has both of these lines </p>
<pre><code>// Silverlight ONLY
storyboard.Stop();
storyboard.Begin();
</code></pre>
<p>Luckily WPF doesn't make you do this.</p>
<pre><code>public partial class Window1 : Window
{
public Storyboard myStoryboard;
public Window1()
{
this.InitializeComponent();
// Insert code required on object creation below this point.
myStoryboard = (Storyboard)TryFindResource("OnLoaded1");
// This will loop your storyboard endlessly so you can use the Pause/Resume functions
myStoryboard.Completed += new EventHandler(myStoryboard_Completed);
// Begin the animation and immediately Pause it.
myStoryboard.Begin();
myStoryboard.Pause();
}
void myStoryboard_Completed(object sender, EventArgs e)
{
myStoryboard.Begin();
}
private void path_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
// Start the spinning again
myStoryboard.Resume();
}
private void path_MouseRightButtonDown(object sender, MouseButtonEventArgs e)
{
// Pause the Spinning.
myStoryboard.Pause();
}
}
</code></pre>
<p>You also need to remove the Event Trigger, and start the Storyboard from the Code Behind.</p>
<pre><code> <Window.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.Loaded">
<!-- REMOVE THIS LINE
<BeginStoryboard Storyboard="{StaticResource OnLoaded1}"/>
-->
</EventTrigger>
</Window.Triggers>
</code></pre>
http://stackoverflow.com/questions/342829/wpf-animations-in-a-user-control-learning-trying-to-understand-but-feeling-n/342891#3428911Answer by discorax for WPF - Animations in a user control, learning, trying to understand, but feeling n00bish.discorax2008-12-05T04:11:11Z2008-12-05T04:11:11Z<p>Do you want to do this in XAML or in the c# code behind?</p>
<p>Both methods can give you some great flexibility with your animations.</p>
<p>Here is the XAML storyboard solution, let me know if you want a pure c# version.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Media.Animation;
using System.Windows.Resources;
using System.Windows.Markup;
// Make sure to include this reference to use Storyboard Class
using System.Windows.Media.Animation;
namespace StoryboardSample
{
public partial class Window1 : Window
{
// Set up the Storyboard variable
public Storyboard myStoryboard;
public Window1()
{
this.InitializeComponent();
// Assign the Storyboard to the variable.
myStoryboard = (Storyboard)TryFindResource("myStoryboard");
myFunction();
}
public void myFunction()
{
// Begin the Animation
myStoryboard.Begin();
}
}
}
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="StoryboardSample.Window1"
x:Name="Window"
Title="Window1"
Width="640" Height="480">
<Window.Resources>
<Storyboard x:Key="myStoryboard">
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="myRect" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.Y)">
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/>
<SplineDoubleKeyFrame KeyTime="00:00:01" Value="-71"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</Window.Resources>
<Grid x:Name="LayoutRoot">
<Rectangle x:Name="myRect" Fill="Black" Width="300" Height="150" RenderTransformOrigin="0.5,0.5" >
<Rectangle.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1" ScaleY="1"/>
<SkewTransform AngleX="0" AngleY="0"/>
<RotateTransform Angle="0"/>
<TranslateTransform X="0" Y="0"/>
</TransformGroup>
</Rectangle.RenderTransform>
</Rectangle>
</Grid>
</Window>
</code></pre>
<p>I have a write-up on <a href="http://www.ryancdavidson.com/personal/2008/10/access-wpf-storyboard-in-xaml-from-code.html" rel="nofollow">my blog</a> with a little more detail on this code.</p>
http://stackoverflow.com/questions/339679/edit-a-file-using-javascript/339738#3397380Answer by discorax for Edit a file using javascriptdiscorax2008-12-04T06:45:23Z2008-12-04T06:45:23Z<p>Nickf is correct. The reason Javascript can't write to a file is because it is a <a href="http://en.wikipedia.org/wiki/Client-side_scripting" rel="nofollow">Client-Side</a> language. Javascript will never have permission to write a file because it has to operate inside the browser sandbox. </p>
<p>You will need to use a server-side script (.NET, PHP, ColdFusion, etc) to write the file.</p>
http://stackoverflow.com/questions/332160/looking-for-a-free-open-source-ide-for-flash-development/338058#3380581Answer by discorax for Looking for a Free Open Source IDE for Flash developmentdiscorax2008-12-03T17:45:18Z2008-12-03T17:45:18Z<p><a href="http://www.sephiroth.it/python/sepy.php" rel="nofollow">SEPY</a> is an open source ActionScript Editor. It can compile .SWF files, but I'm not sure if you need to make adjustments to the .FLA files this will help you.</p>
<p>You could try <a href="http://www.download.com/Flash-Compiler-Decompiler/3000-10247_4-10317140.html" rel="nofollow">this</a>. But I'm pretty sure you need to use Flash to edit .fla files, at least that's what I've heard.</p>
<p>As was said before, trial version is probably what you need.</p>
http://stackoverflow.com/questions/334088/flash-motion-question/338046#3380461Answer by discorax for flash motion questiondiscorax2008-12-03T17:41:49Z2008-12-03T17:41:49Z<p>Oh man, there are so many things you can do with script based animations. The answer you selected will work for your example, but you really should look into what code based animation can do for you. Check out these sites to get started.</p>
<p>First, check out <a href="http://www.mosessupposes.com/Fuse/" rel="nofollow">FuseKit</a> for ActionScript 2.0 animations. You an build code based tween sequences.</p>
<p>There is also the <a href="http://www.goasap.org/" rel="nofollow">GoASAP</a> animation platform which is an AS3 evolution of Fuse. But instead of being a limited class, it's a community driven Animation Platform with the goal of providing framework for Animation across multiple platforms (Flash/AS, SIlverlight/.NET, AfterEffects, 3D/Maya, etc)</p>
http://stackoverflow.com/questions/337762/suggested-flash-tutorial-sites/337993#3379932Answer by discorax for Suggested flash tutorial sitesdiscorax2008-12-03T17:27:24Z2008-12-03T17:33:12Z<p><a href="http://www.gotoandlearn.com/" rel="nofollow">GotoAndLearn</a> was mentioned above, and I wanted to say the the <a href="http://www.gotoandlearnforum.com/" rel="nofollow">GotoAndLearn</a> Forums have a great community (much like StackOverflow). Lee Brimelow has worked extensively with both Microsoft and Adobe as an evangelist and is very active in the community. There are also some very smart and talented admins/users answering your ActionScript 1,2, and 3.0 questions as well as helping to integrate Flash with other technologies like PHP, .NET etc. </p>
<p><a href="http://www.lynda.com/" rel="nofollow">Lynda.com</a> has a pay for video tutorial library with some excellent sessions on all sorts of software and technologies. The videos can really jump start your familiarity and increase your comfort level with all sorts of programs very quickly. They also have some excellent examples available as a premium membership, but you can get a month-to-month membership for a little as $25. Flash is one technology they do particularly well.</p>
<p><a href="http://www.friendsofed.com/" rel="nofollow">Friends of Ed</a> also has some great tutorials available as well as some excellent books they have published. They really take an Problem-Solution approach to learning, so there are lots of great samples that you can start using right away. </p>
http://stackoverflow.com/questions/330138/why-cant-i-call-a-public-method-in-another-class/330143#3301432Answer by discorax for Why can't I call a public method in another class?discorax2008-12-01T06:16:51Z2008-12-01T06:46:16Z<p>It sounds like you're not instantiating your class. That's the primary reason I get the "an object reference is required" error.</p>
<pre><code>MyClass myClass = new MyClass();
</code></pre>
<p>once you've added that line you can then call your method</p>
<pre><code>myClass.myMethod();
</code></pre>
<p>Also, are all of your classes in the same namespace? When I was first learning c# this was a common tripping point for me.</p>
http://stackoverflow.com/questions/303809/how-do-i-place-scale-a-xaml-graphic-in-my-application/310491#3104910Answer by discorax for How do I place/scale a XAML graphic in my application?discorax2008-11-21T22:58:57Z2008-11-21T22:58:57Z<p>Blend UI can help a LOT with doing these sorts of transforms for WPF/Silverlight apps. The UI is a little confusing. Once you copy and paste the XAML into your or or you can click on that item on the left side of the screen. You will see the specific Item highlight in Yellow. Then you can do all sorts of scale, movement etc in either the Properties Panel OR using your mouse, just make sure you have the right cursor. </p>
<p>That's the trickiest part. Different mouse cursor have different effects depending on where you hover over the object. The smallish dark pointer with a Plus next to it is the Render Transform Cursor, it will let you Translate (move x/y), Scale, Rotate, and Skew.</p>
<p>If you're working just in Visual Studio, you can add a RenderTransoform to your Image using the following code. This will give you all sorts of control. Just adjust any of the Transforms and you'll be on your way.</p>
<pre><code> dot = new Image();
BitmapImage dotSource = new BitmapImage();
dotSource.BeginInit();
string dotImageFile = String.Format("path/to/my/{0}.png", "image");
dotSource.UriSource = new Uri(@dotImageFile, UriKind.Relative);
dotSource.EndInit();
dot.Stretch = Stretch.None;
dot.Source = dotSource;
dot.RenderTransformOrigin = new Point(0.5, 0.5);
dotTransformGroup = new TransformGroup();
dotScaleTransform = new ScaleTransform(scaleX, scaleX);
dotSkewTransform = new SkewTransform();
dotRotateTransform = new RotateTransform();
dotTranslateTransform = new TranslateTransform();
dotTransformGroup.Children.Add(dotScaleTransform);
dotTransformGroup.Children.Add(dotSkewTransform);
dotTransformGroup.Children.Add(dotRotateTransform);
dotTransformGroup.Children.Add(dotTranslateTransform);
dot.RenderTransform = dotTransformGroup;
</code></pre>
http://stackoverflow.com/questions/310243/convincing-a-company-to-add-new-technologies-and-techniques-to-their-body-of-stan/310444#3104441Answer by discorax for Convincing a company to add new technologies and techniques to their body of standards?discorax2008-11-21T22:35:04Z2008-11-21T22:35:04Z<p>I work in a small agency and I'm lucky enough to have direct access to my boss. When I find better ways to do my job I just make sure to let him know that there are options early in the job cycle. Over time we've built a level of trust and every time I suggest a new approach there is less and less resistance.</p>
<p>I also make sure to document exactly how much time/money was saved using the new technology. This is easily the most compelling way to evolve your company's process. Bean counters love metrics!</p>
http://stackoverflow.com/questions/299729/javascript-to-flash-communication/305978#3059780Answer by discorax for Javascript to flash communicationdiscorax2008-11-20T16:42:29Z2008-11-20T16:42:29Z<p>Maybe this can help you out, looks like a similar problem but using the swfobject.</p>
<p><a href="http://blog.deconcept.com/swfobject/forum/discussion/1064/swfobject-21-problems-with-externalinterface-in-ie/" rel="nofollow">http://blog.deconcept.com/swfobject/forum/discussion/1064/swfobject-21-problems-with-externalinterface-in-ie/</a></p>
<p>Good luck.</p>
http://stackoverflow.com/questions/299729/javascript-to-flash-communication/305941#3059410Answer by discorax for Javascript to flash communicationdiscorax2008-11-20T16:33:40Z2008-11-20T16:33:40Z<p>Wanted to post this answer, as this <em>may</em> be what's causing problems for others, obviously this is not causing your problem. Still looking into a solution for your issue.</p>
<p>From the MooTools Docs: <a href="http://mootools.net/docs/Utilities/Swiff" rel="nofollow">http://mootools.net/docs/Utilities/Swiff</a>
Note:</p>
<p>The SWF file must be compiled with the ExternalInterface component. See the Adobe documentation on External Interface for more information.</p>
<p>Action Script 2.0</p>
<pre><code>import flash.external.*;
</code></pre>
<p>Action Script 3.0</p>
<pre><code>package com
{
import flash.external.ExternalInterface;
public class Main
{
}
}
</code></pre>
http://stackoverflow.com/questions/285579/c-string-replace-double-quotes-and-literals1C# String.Replace double quotes and Literalsdiscorax2008-11-12T22:17:21Z2008-11-13T19:55:59Z
<p>I'm fairly new to c# so that's why I'm asking this here.</p>
<p>I am consuming a web service that returns a long string of XML values. Because this is a string all the attributes have escaped double quotes</p>
<pre><code>string xmlSample = "<root><item att1=\"value\" att2=\"value2\" /></root>"
</code></pre>
<p>Here is my problem. I want to do a simple string.replace. If I was working in PHP I'd just run strip_slashes().</p>
<p>However, I'm in C# and I can't for the life of me figure it out. I can't write out my expression to replace the double quotes (") because it terminates the string. If I escape it then it has incorrect results. What am I doing wrong?</p>
<pre><code> string search = "\\\"";
string replace = "\"";
Regex rgx = new Regex(search);
string strip = rgx.Replace(xmlSample, replace);
//Actual Result <root><item att1=value att2=value2 /></root>
//Desired Result <root><item att1="value" att2="value2" /></root>
</code></pre>
<blockquote>
<p>MizardX: To include a quote in a raw string you need to double it. </p>
</blockquote>
<p>That's important information, trying that approach now...No luck there either
There is something going on here with the double quotes. The concepts you all are suggesting are solid, BUT the issue here is dealing with the double quotes and it looks like I'll need to do some additional research to solve this problem. If anyone comes up with something please post an answer.</p>
<pre><code>string newC = xmlSample.Replace("\\\"", "\"");
//Result <root><item att=\"value\" att2=\"value2\" /></root>
string newC = xmlSample.Replace("\"", "'");
//Result newC "<root><item att='value' att2='value2' /></root>"
</code></pre>
http://stackoverflow.com/questions/256529/parsing-a-local-xml-document-in-wpf-works-in-debug-fails-once-published0Parsing a local XML Document in WPF (works in debug, fails once published). discorax2008-11-02T04:51:01Z2008-11-03T19:19:23Z
<p>I am building a WPF application. Inside that application I am using the XmlReader class to parse several local XML files. The code I have written <strong>works perfectly</strong> during debugging, but fails once I publish the application and install it.</p>
<p>I have the XML documents as CONTENT in build action, and I have them set to COPY ALWAYS.I can confirm that the XML documents are being deployed in my build and are in tact in the application folder once installed.</p>
<p>What further confuses me is that I am using the same XmlReader code to parse RSS feeds from external websites in this application without problem. It only fails on the local XML documents.</p>
<p>Does anyone know why my XmlReader would fail to parse local XML documents once the application is published?</p>
<p>Here is a small snippet of my XmlReader code for referance:</p>
<pre><code>XmlReaderSettings settings = new XmlReaderSettings();
settings.IgnoreComments = true;
settings.IgnoreProcessingInstructions = true;
settings.IgnoreWhitespace = true;
try
{
settingsReader = XmlReader.Create("Resources/data/TriviaQuestions.xml", settings);
nodeNum = 0;
while (settingsReader.Read())
{
switch (settingsReader.NodeType)
{
case XmlNodeType.Element:
if (settingsReader.HasAttributes)
{
for (int i = 0; i < settingsReader.AttributeCount; i++)
{
settingsReader.MoveToAttribute(i);
_feeds[nodeNum] = settingsReader.Value.ToString();
}
settingsReader.MoveToContent(); // Moves the reader back to the element node.
}
break;
case XmlNodeType.Text:
_questions[nodeNum] = settingsReader.Value;
nodeNum++;
break;
}
}
settingsReader.Close();
}
catch
{
}
</code></pre>
<p>Here is my XML</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<Questions>
<Question feed="http://entertainment.msn.com/rss/topboxoffice/">What movie has the top box office sales in the US right now?</Question>
<Question feed="http://entertainment.msn.com/rss/topdvdrentals/">What is the top DVD rental in the US this week?</Question>
<Question feed="http://entertainment.msn.com/rss/topalbums/">Which of the following albums is currently topping the charts?</Question>
</Questions>
</code></pre>
http://stackoverflow.com/questions/1725001/which-has-better-rendering-performance-stackpanel-or-canvastranslatetransform/1725157#1725157Comment by discorax on Which has better rendering performance, Stackpanel or Canvas+TranslateTransform? WPF/Silverlightdiscorax2009-11-13T17:37:09Z2009-11-13T17:37:09ZI agree, that's why I only use RenderTransform.TranslateTransform when I need to animate in some way. Simple layout StackPanel is much easier! :)http://stackoverflow.com/questions/1684489/how-do-you-make-sure-wpf-releases-large-bitmapsource-from-memory/1685504#1685504Comment by discorax on How do you make sure WPF releases large BitmapSource from Memory?discorax2009-11-06T07:28:36Z2009-11-06T07:28:36ZThis approach looks promising so far. I'll continue to test.http://stackoverflow.com/questions/1684489/how-do-you-make-sure-wpf-releases-large-bitmapsource-from-memory/1685504#1685504Comment by discorax on How do you make sure WPF releases large BitmapSource from Memory?discorax2009-11-06T07:17:11Z2009-11-06T07:17:11ZAhh..it compiles when I use BitmapImage instead of BitmapSource.
Now, how will that cause problems? :)http://stackoverflow.com/questions/1684489/how-do-you-make-sure-wpf-releases-large-bitmapsource-from-memory/1685504#1685504Comment by discorax on How do you make sure WPF releases large BitmapSource from Memory?discorax2009-11-06T07:09:59Z2009-11-06T07:09:59ZBitmapSource source = new BitmapSource() won't compile and I'm not sure why. Throws this error:
Error 4 Cannot create an instance of the abstract class or interface 'System.Windows.Media.Imaging.BitmapSource'
http://stackoverflow.com/questions/980334/wpf-webbrowser-3-5-sp1-always-on-top-other-suggestion-to-display-html-in-wpfComment by discorax on WPF WebBrowser (3.5 SP1) Always on top - other suggestion to display HTML in WPFdiscorax2009-10-18T07:20:31Z2009-10-18T07:20:31Zfound a good way yet? i've run into the same problem.http://stackoverflow.com/questions/1548479/dispatchertimer-eating-up-cpu-over-time-causing-wpf-visual-not-rendering-properly/1558232#1558232Comment by discorax on DispatcherTimer eating up CPU over time causing WPF visual not rendering properlydiscorax2009-10-18T02:08:56Z2009-10-18T02:08:56Za reworking of the Clock class seems to have fixed some of the issues. Since I put a bounty on this question I had to accept an answer, however, the DispatcherTimer issue is still outstanding. I hoped that someone with experience working with multiple threads would chime in, but was not to be.
Thanks for your help.http://stackoverflow.com/questions/1548479/dispatchertimer-eating-up-cpu-over-time-causing-wpf-visual-not-rendering-properly/1558232#1558232Comment by discorax on DispatcherTimer eating up CPU over time causing WPF visual not rendering properlydiscorax2009-10-13T19:40:13Z2009-10-13T19:40:13ZI've rebuilt the Clock class to include a DisposeTimer method which I call right before I remove the Clock instance from the Visual Tree. I'm running a test right now to see if that solves the issue. I'm keeping my fingers crossed.http://stackoverflow.com/questions/1548479/dispatchertimer-eating-up-cpu-over-time-causing-wpf-visual-not-rendering-properlyComment by discorax on DispatcherTimer eating up CPU over time causing WPF visual not rendering properlydiscorax2009-10-13T19:38:30Z2009-10-13T19:38:30ZThere is no XAML to speak of. I'm creating all the elements in the code behind and adding them to a root canvas at runtime. The Clock class extends the Canvas class.http://stackoverflow.com/questions/1548479/dispatchertimer-eating-up-cpu-over-time-causing-wpf-visual-not-rendering-properly/1556061#1556061Comment by discorax on DispatcherTimer eating up CPU over time causing WPF visual not rendering properlydiscorax2009-10-12T21:17:15Z2009-10-12T21:17:15ZThat's a good suggestion. I did that and it seems to accelerate the problem. There is one other detail I'm creating an instance of the Clock class each time, that's the constructor I refer to. It's possible that the Clock object is not being collected by GC properly which may be the culprit. http://stackoverflow.com/questions/1548479/dispatchertimer-eating-up-cpu-over-time-causing-wpf-visual-not-rendering-properlyComment by discorax on DispatcherTimer eating up CPU over time causing WPF visual not rendering properlydiscorax2009-10-12T18:34:25Z2009-10-12T18:34:25Z@Greg I added that part now too. It updates every second.http://stackoverflow.com/questions/1548479/dispatchertimer-eating-up-cpu-over-time-causing-wpf-visual-not-rendering-properly/1556061#1556061Comment by discorax on DispatcherTimer eating up CPU over time causing WPF visual not rendering properlydiscorax2009-10-12T18:23:54Z2009-10-12T18:23:54Zfunny, you should mention that. That's exactly where I started, in fact my first question had exactly that so I'll add it back in.http://stackoverflow.com/questions/525161/wpf-building-a-queue-in-a-thread-with-timers/531154#531154Comment by discorax on WPF: Building a Queue in a Thread with Timersdiscorax2009-10-12T17:30:50Z2009-10-12T17:30:50ZA sequencer! Great, thanks!http://stackoverflow.com/questions/1111645/comparing-timer-with-dispatchertimer/1111699#1111699Comment by discorax on Comparing Timer with DispatcherTimerdiscorax2009-10-12T17:27:10Z2009-10-12T17:27:10ZI am having a problem with DispatcherTimer eating up processor over time. Is there a good way to handle that?http://stackoverflow.com/questions/1236946/how-to-show-streaming-videos-in-flash-in-iphone-application/1528222#1528222Comment by discorax on How to show streaming videos in flash in iPhone applicationdiscorax2009-10-07T17:39:45Z2009-10-07T17:39:45Z@qntmfred yeah, compiled streaming video would be a neat trick! I bet Jon Skeet could pull it off! ;)http://stackoverflow.com/questions/1528143/transparent-gif-help/1528145#1528145Comment by discorax on transparent gif helpdiscorax2009-10-06T21:25:39Z2009-10-06T21:25:39ZTell your client to stop supporting IE6. <a href="http://desizntech.info/2009/02/die-ie6-die-go-to-hell-already/" rel="nofollow">desizntech.info/2009/02/…</a>