User bitbonk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T08:31:20Zhttp://stackoverflow.com/feeds/user/4227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1504064/resharper-cleanup-code-vs-var-keyword0resharper "cleanup code" vs. 'var' keywordbitbonk2009-10-01T13:45:04Z2009-12-23T02:31:08Z
<p>I have an odd behavior with code clean up for c# in visual studio 2008 Team Developer Edition. Whenever I clean up my code using "Full Cleanup" it replaces all var declaration with explicit type declarations. But I have set the appropriate settings under "Inspection Severity" "Use var keyword when initializer explictly declares type" and "use var keyword when possible" to "Show as Error"</p>
<p>Is there any other setting I need to set or is this a known bug?</p>
http://stackoverflow.com/questions/1654355/define-animations-and-triggers-as-reusable-resource6define animations and triggers as reusable resource?bitbonk2009-10-31T13:16:06Z2009-12-18T19:54:35Z
<p>Is there a way to define an animation somewhere in xaml (eg. as a resource) once and then reuse it multiple times? I have a lot of independent brushes across differnt datatemplates that independently need to start the same kind of animation based on a datatrigger. Now since it seems that an animation has to define an Storyboard.TargetName and Storyboard.TargetProperty. This pretty much defeats the purpose of reusability. I would somehow like to declare "use this animation form the resource but apply it to another element this time". </p>
<p>To me this seems to be a rather basic, important and essential request and I am suprised that its not that straight forward to acomplish. Am I missing something here?</p>
<p>The same thing applies for triggers. Suppose I have a lot of differnt visual elements that all represent the same type of state using color animations. E.g. fade to green when "active" fade to "red" when "error" etc. The only difference between the visuals is their shape/visual tree the desired animation behavior is the same, they all have an element somewhere in their visual tree that has a property of type color. I think it is not hard to imagine how tedious it is to redefine the same animations and datatrigger sets over and over again. Every developer hates this. I desperately seek for an easier solution that doesn't require no (or at least very little) c# code behind.</p>
<p>What I have come up with so far is this:</p>
<p>Define the animations in a resource lik this (repeat this for all basic states that there are, like activating, active, inactive, error):</p>
<pre><code><ColorAnimationUsingKeyFrames x:Key="deactivatingColorAnimation"
Storyboard.TargetProperty="Material.(MaterialGroup.Children)[0].Brush.(SolidColorBrush.Color)"
FillBehavior="HoldEnd" RepeatBehavior="Forever" AutoReverse="True">
<ColorAnimationUsingKeyFrames.KeyFrames>
<LinearColorKeyFrame KeyTime="00:00:00" Value="Gray"/>
<LinearColorKeyFrame KeyTime="00:00:0.25" Value="Gray"/>
<LinearColorKeyFrame KeyTime="00:00:0.5" Value="Gray" />
<LinearColorKeyFrame KeyTime="00:00:0.75" Value="Gray" />
</ColorAnimationUsingKeyFrames.KeyFrames>
</ColorAnimationUsingKeyFrames>
</code></pre>
<p>The use it in storyboard in the triggers (repeat this zillions of times for each state X each differnt stateviusal, always come up with a new name for the storyboard):</p>
<pre><code><DataTrigger Binding="{Binding SubstrateHolder.State}" Value="Deactivating">
<DataTrigger.EnterActions>
<BeginStoryboard x:Name="someStateVisualDeactivatingStoryboard">
<Storyboard Storyboard.TargetName="someStateVisual">
<StaticResource ResourceKey="deactivatingColorAnimation" />
</Storyboard>
</BeginStoryboard>
</DataTrigger.EnterActions>
<DataTrigger.ExitActions>
<RemoveStoryboard BeginStoryboardName="someStateVisualDeactivatingStoryboard" />
</DataTrigger.ExitActions>
</DataTrigger>
</code></pre>
<p>You can easily imagine how much bloat XAML I have to repeatedly copy and paste for all those zillion DataTriggers. </p>
<p>It would be cool to define all this triggers once and apply it to different state visuals. How is something like this solved in WPF? Any tip?</p>
http://stackoverflow.com/questions/1927687/character-based-file-stream-in-net0character based file stream in .NETbitbonk2009-12-18T11:33:17Z2009-12-18T11:47:45Z
<p>I need to modify a textfile of unknown encoding in that I need to insert some text after the first occurence of a predefined string (e.g. "#markx#"). Is there a class in .NET that allows me to randomly access the content of a file <strong>but based on characters</strong> (as opposed to bytes). Since the Stream.Seek Methods work on byte basis I would not only need to know the encoding but also know if there are some special control bytes (such as the first bytes at the beginning of unicode file). I would love to have a class that abstact all this away and allows me to "say": <em>seek to 25th character and add some string there</em> just as a texteditor would do it.</p>
http://stackoverflow.com/questions/1789603/visual-studio-make-view-code-default-using-attribute0Visual Studio: Make view code default using attributebitbonk2009-11-24T11:55:34Z2009-12-15T21:41:22Z
<p>I know how to <a href="http://stackoverflow.com/questions/399768?sort=votes">configure VS 2008 to open windows forms controls in code instead of the designer</a>. But I think I have seen a way I could do this with an attribute I could decorate the desired controls with. Does anyone know its name? This is especailly usefull if you want some controls to be opened in the designer and some in the c# code view.</p>
http://stackoverflow.com/questions/1858220/transparent-background-for-mfc-hosted-windows-forms-usercontrol0Transparent background for MFC-hosted Windows Forms UserControlbitbonk2009-12-07T06:30:30Z2009-12-13T20:58:54Z
<p>I am using CWinFormsControl to host a Windows Forms UserControl in an MFC dialog. I have set the property <code>DoubleBufferd</code> to true. According to the docs this results in <code>AllPaintingInWmPaint</code> and <code>UserPaint</code> to be set to true too (not sure if this matters). How can I force (or fake) the UserControl to draw its background transparent?</p>
<p>This is what I have set in the contructor of my UserControl:</p>
<pre><code>this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
this.BackColor = Color.Transparent;
this.DoubleBuffered = true;
</code></pre>
http://stackoverflow.com/questions/1310866/is-there-an-msdn-subscrition-plan-that-includes-the-printed-msdn-magazine0Is there an MSDN subscrition plan that includes the printed MSDN Magazine?bitbonk2009-08-21T09:10:26Z2009-12-07T17:02:54Z
<p>Is there an MSDN subsriction plan that includes the printed version of the MSDN magazine for european (german) customers?</p>
http://stackoverflow.com/questions/1859134/programmatically-change-the-windows-color-border-of-windows-7/1859194#18591941Answer by bitbonk for programmatically change the windows color border of windows 7bitbonk2009-12-07T10:38:04Z2009-12-07T10:46:33Z<p>It is not possible to change the color of a window individually but you can change the color OS-wide via the resgistry. The entry should be something like this: <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Glass Colorization\Swatches</code> in conjunction with <code>HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM - ColorizationColor</code></p>
<p>From within your code you can only adjust the shape and the size of your Glass border but I don't think the color. In <a href="http://social.msdn.microsoft.com/Forums/en/windowsuidevelopment/thread/f7ffa1ee-deba-4cca-a1e5-5f737dbccd87" rel="nofollow">Windows Forms it is done like</a> this and in <a href="http://msdn.microsoft.com/en-us/library/ms748975.aspx" rel="nofollow">WPF like this</a>.</p>
http://stackoverflow.com/questions/1858235/wpf-xaml-intellisense-doesnt-work-correctly-for-custom-routed-event-handlers/1858255#18582550Answer by bitbonk for WPF XAML Intellisense doesn't work correctly for custom routed event handlersbitbonk2009-12-07T06:40:04Z2009-12-07T06:40:04Z<p>I think this is currently a limitation you have to live with. But all you have to do is, once the eventhandler for the generic type was autogenerated, change the signature of the generated method to use MyRoutedEventArgs instead of RoutedEventArgs. Allthough still ugly (we shouldn't be forced to do this) I would think it is not such a big problem.</p>
<p>Anyone tried it with VS 2010 ?</p>
http://stackoverflow.com/questions/1847813/create-a-json-datetime-string-with-net4create a JSON DateTime string with .NETbitbonk2009-12-04T15:46:12Z2009-12-04T22:25:01Z
<p>For a strange reason that does not matter for this question I need to create a JSON compatible substring that represents a DateTime and that will be manually insterted into a larger JSON string that later will be parsed by .NET's DataContractJsonSerializer. I have come up with the following method:</p>
<pre><code>static readonly DataContractJsonSerializer s = new DataContractJsonSerializer(typeof(DateTime));
private static string ToJsonString(DateTime time)
{
using (var memStream = new MemoryStream())
{
s.WriteObject(memStream, time);
return Encoding.UTF8.GetString(memStream.ToArray());
}
}
</code></pre>
<p>Is there any simpler way to do this or can the code above be optimized in any way? Or is there even a mistake in the code above?</p>
<p><em>Also it would be really cool if I could do it without the use of DataContractJsonSerializer since the string building will also be done in a pure .NET 1.1 process.</em></p>
http://stackoverflow.com/questions/1824870/classnametype-gettypesomenamespace-classname/1824883#18248832Answer by bitbonk for ClassName<Type.GetType("Somenamespace.ClassName")> bitbonk2009-12-01T08:59:57Z2009-12-01T09:07:25Z<p>It can be done: <a href="http://msdn.microsoft.com/en-us/library/b8ytshk6.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/b8ytshk6.aspx</a> (See section <em>"Constructing an Instance of a Generic Type"</em>)</p>
<p>The following example creates a <code>Dictionary<string,object></code>:</p>
<pre><code>Type d1 = typeof(Dictionary<,>);
Type[] typeArgs = {typeof(string), typeof(object)};
Type constructed = d1.MakeGenericType(typeArgs);
object o = Activator.CreateInstance(constructed);
</code></pre>
http://stackoverflow.com/questions/1813740/what-happens-to-a-weakreference-after-gc-of-weakreference-target2What happens to a WeakReference after GC of WeakReference.Targetbitbonk2009-11-28T20:44:10Z2009-11-30T21:18:42Z
<p>What happens to the WeakReference when the target object referenced by WeakReference.Target has been garbage collected? Does the WeakRerence stay alive and keeps existing?
The reason why I am asking is that I have a list of WeakReferences stored in a List. During runtime new WeakReferences constantly are getting added to that list. Now when the target object dies, do I have to cleanup the abandoned WeakReference myself?
If so, is there a clever trick how I could do this? Can I get notified when a WeakReference becomes abandoned? Or do I have to introduce a timer that frequently loops through that list, to see if any WeakReference instances can be removed from that list.</p>
http://stackoverflow.com/questions/1783130/draw-emf-antialiased1Draw emf antialiasedbitbonk2009-11-23T13:28:33Z2009-11-30T18:09:05Z
<p>Is there a way to draw an emf metafile (exported form a drawing tool) with antialiasing enabled? The tools I tried are not capable of exporting emf files antaliased so I wondered if I can turn it back on manually when drawing the emf in the OnPaint override of my Controls. </p>
<p>If anyone can confirm that is technically possible to generate antialiased emf files, another solution would be to use a drawing tool that can export to antialiased emf or have a 3rd party converter do this later. If anyone knowns such a tool, please let me know.</p>
<p>EDIT: When looking at the <a href="http://msdn.microsoft.com/en-us/library/cc231166%28PROT.13%29.aspx" rel="nofollow">emf instructions</a> it doesn't seem that emf itself can actually store the information whether it is to be rendered antialiased or not. At least I couldn't find anything. It is more likely that tha antialiasing is done by the playback engine. For example when I open an emf in Word 2007 it is rendered antialiased. But not when I draw it with GDI+ "playback engine" (<code>Graphics.DrawImage(...)</code>). or when I view it the standard windows image viewer.
This makes me believe that some tools actually have their own emf playback engine. So maybe there is free .NET library (preferably with source code) that give me an object model of the emf instructions stored in the parsed emf file so I can play it back myself instead of using <code>Graphics.DrawImage(...)</code>? </p>
http://stackoverflow.com/questions/1812010/how-to-implement-this-oscillation-function2How to implement this oscillation function bitbonk2009-11-28T08:47:48Z2009-11-30T04:37:11Z
<p>What would be a fast way to implent this osscilation function.
A signature would look like this:</p>
<p><code>public static double Calculate(UInt64 currentCounter, uint duration, uint inDuration, uint outDuration)</code></p>
<p>And the result should be a double that as currentCounter advances, ossciates between 0 and 1. The osscialtion speed is defines by the <code>duration</code> parameter (the number of ticks for a single osccilation). Similarily the ascent and descent speed is defines via <code>inDUration</code> and <code>outDuration</code> (<code>inDUration</code> + <code>outDuration</code>).</p>
<p><img src="http://img252.imageshack.us/img252/9457/graphuf.jpg" alt="alt text"></p>
<p>The x-Axis of this graph would of course be <code>currentCounter</code>.</p>
http://stackoverflow.com/questions/261139/nunit-vs-mbunit-vs-mstest-vs-xunit-net31NUnit vs. MbUnit vs. MSTest vs. xUnit.net bitbonk2008-11-04T07:20:06Z2009-11-29T01:33:30Z
<p>There are quite a lot of unittesting frameworks out there for .NET. I found this little feature comparison: <a href="http://www.codeplex.com/xunit/Wiki/View.aspx?title=Comparisons" rel="nofollow">http://www.codeplex.com/xunit/Wiki/View.aspx?title=Comparisons</a></p>
<p>Now I am to choose the best one for us. But how? Does it matter? Which one is most future proof and has a decent momentum behind it? Should I care about the features? While xUnit seems to be most modern and specifically designed for .NET, nUnit again seems to be the one that is widely accepted. MSTest again is already integrated into Visual Studio ...</p>
http://stackoverflow.com/questions/1813400/learning-dot-net/1813437#18134370Answer by bitbonk for Learning Dot Netbitbonk2009-11-28T19:05:38Z2009-11-28T19:05:38Z<p>I think <a href="http://rads.stackoverflow.com/amzn/click/1590598849" rel="nofollow">Troelsens .NET book</a> is on of the best books around for getting started. Infact I used his first edition to get to known .NET. It covers the underpinnings and the structure of the .NET Runtime and gives a very good and broad overview on what's available in the libraries. Aslo note ther is <a href="http://rads.stackoverflow.com/amzn/click/1430225491" rel="nofollow">the .NET 4.0 version coming soon</a>.</p>
http://stackoverflow.com/questions/1793791/backup-project-copy/1793814#17938140Answer by bitbonk for backup project copybitbonk2009-11-24T23:57:53Z2009-11-24T23:57:53Z<p>I just copy all visual studio files to a different directory.</p>
http://stackoverflow.com/questions/1793109/using-hashsets-with-observablecollection-with-wpf/1793557#17935572Answer by bitbonk for Using HashSets with ObservableCollection with WPFbitbonk2009-11-24T23:03:28Z2009-11-24T23:29:29Z<p>When you create a new ObservableCollection with another collection you are not wrapping that collection, you create a new one where all items of the passed collection are copied to the ObservableCollection. If you want to use an ObservableCollection for the sole purpose of DataBinding, look no further, you can bind to any IEnumerable in WPF. This unfortuantely has the drawback that WPF will not always correctly pickup changes to the bound collection. If this is an issue you'd probably have to create your own obeservable hashset:</p>
<pre><code>public class ObservableHashSet<T> : ObservableCollection<T>
{
protected override void InsertItem(int index, T item)
{
if (Contains(item))
{
throw new ItemExistsException(item);
}
base.InsertItem(index, item);
}
protected override void SetItem(int index, T item)
{
int i = IndexOf(item);
if (i >= 0 && i != index)
{
throw new ItemExistsException(item);
}
base.SetItem(index, item);
}
}
</code></pre>
<p>EDIT:
AS already has been pointed out, you can not inherit from HashSet to implement INotifyCollectionChanged. However if you look at the code (using Reflector) for the HashSet class it is pretty simple it should be too hard to mimic that functionality yourself.</p>
http://stackoverflow.com/questions/1793472/returning-a-match-from-a-listkeyvaluepairstring-string/1793507#17935070Answer by bitbonk for Returning a match from a List<KeyValuePair<string,string>>bitbonk2009-11-24T22:52:11Z2009-11-24T22:52:11Z<p>tempComCols is list of <code>CD</code> items: <code>List<CD> tempComCols ...</code> and you want to iterate over something that is of type IEnumerable: <code>foreach (KeyValuePair<string, string> comCD in tempComCols)</code></p>
http://stackoverflow.com/questions/1786477/change-image-using-trigger-wpf-mvvm/1786582#17865820Answer by bitbonk for Change image using trigger WPF MVVMbitbonk2009-11-23T22:41:56Z2009-11-23T22:41:56Z<pre><code><DataTemplate DataType="{x:Type local:TabFileViewModel}">
<StackPanel Orientation="Horizontal">
<Grid>
<Image x:Name="a" Width="16" Height="16" Margin="3,0" Source="Image\NotFounds.PNG" />
<Image x:Name="b" Width="16" Height="16" Margin="3,0" Source="Image\TabFile.PNG" />
</Grid>
<TextBlock Text="{Binding Name}" ToolTip="{Binding FullPath}"/>
</StackPanel>
<DataTemplate.Triggers>
<DataTrigger Binding={Binding NotFound} Value="true">
<Setter TargetName="a" TargetProperty="Visibility" Value="Visible" />
<Setter TargetName="b" TargetProperty="Visibility" Value="Hidden" />
</DataTrigger>
<DataTrigger Binding={Binding NotFound} Value="false">
<Setter TargetName="a" TargetProperty="Visibility" Value="Hidden" />
<Setter TargetName="b" TargetProperty="Visibility" Value="Visible" />
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</code></pre>
http://stackoverflow.com/questions/1779539/calculate-the-bounding-box-of-a-gdi-drawing1Calculate the bounding box of a GDI+ drawingbitbonk2009-11-22T18:36:56Z2009-11-23T17:19:45Z
<p>I am drawing an image from MetaFile (emf) and then apply some rotation transformations to it all within the OnPaint of a UserControl. After applying those transformation how can I calculate the normal untransformed rectangular bounding box of this in screen coordinates? I need this to be able to resize the rotated image to the size of the UserControl. </p>
<pre><code>protected override void OnPaint(PaintEventArgs e)
{
// rotate around the center of this UserControl
e.Graphics.TranslateTransform(this.Width / 2.0f, this.Height / 2.0f);
e.Graphics.RotateTransform(this.Rotation);
e.Graphics.TranslateTransform(this.Width / -2.0f, this.Height / -2.0f);
// TODO: now scale so the image so it fits exactly into this UserControl
// draw the image at the center of this UserControl
float left = (this.Width - ResourceManager.MyDrawingMetaFile.Width) / 2.0f;
float top = (this.Height - ResourceManager.MyDrawingMetaFile.Height) / 2.0f;
e.Graphics.DrawImage(Resources.MyDrawingMetaFile, left, top);
}
</code></pre>
<p>The whole idea behind this is that I want to display rotated .emf File in a UserControl and have the emf drawing allways fill the available space in the UserControl. Maybe there is a better approach? </p>
<p>The fillmode/stretchmode I am after is Uniform and UniformToFill (like in WPF's Viewbox). The emf should not be distorted an in Uniform mode the emf completely fills the usercontrol at least in one dimension, nothing is cropped. In UniformToFill the emf filles the UserControl in both dimensions and if the aspectratios do not match, the emf is cropped in one dimension.</p>
http://stackoverflow.com/questions/1783005/how-can-i-change-styles-of-xaml-file-using-data-binding/1783017#17830173Answer by bitbonk for How can I change styles of XAML file using Data Binding?bitbonk2009-11-23T13:00:15Z2009-11-23T13:06:57Z<p>What you'd normally do is write a DataTemplate for the objects in the list and then have a DataTrigger set the Fontweight of the TextBlock/TextBox based on the IsBold Property.</p>
<pre><code><DataTemplate DataType="DataItem">
<TextBlock x:Name="tb" Text="{Binding Name}"/>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding IsBold}" Value="true">
<Setter TargetName="tb" Property="FontWeight" Value="Bold" />
</DataTrigger>
<DataTrigger Binding="{Binding IsBold}" Value="false">
<Setter TargetName="tb" Property="FontWeight" Value="Normal" />
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</code></pre>
<p>You'd then set a list of DataItems to the ItemsSource property of your ComboBox (either by Databinding or directly in the codebehind <code>myComboBox.ItemsSource=myDataItems</code>). The rest is done by WPF for you.</p>
http://stackoverflow.com/questions/1779977/normalize-rotation-to-be-within-3601normalize rotation to be within 360° [closed]bitbonk2009-11-22T20:58:23Z2009-11-22T21:58:41Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1628386/normalise-orientation-between-0-and-360">Normalise orientation between 0 and 360</a> </p>
</blockquote>
<p>What would be a fast algorithm to normalize an arbitary angle to be within 0°-360° ? For example with an input of 730° the algorithm's output should be 10° (2 * 360° + 10° = 10°) and with an input of -50° the output should be 310° (-50° + 360° = 310°). </p>
http://stackoverflow.com/questions/1770973/can-a-static-class-be-instantiated-more-than-once-within-a-single-process/1771091#17710914Answer by bitbonk for Can a static class be instantiated more than once within a single process?bitbonk2009-11-20T15:13:37Z2009-11-20T15:13:37Z<p>Yes a static class can act as a singleton-like construct. All the static members it contains will only exists once - <strong>but per AppDomain</strong> (just keep in mind that one process can have multiple (isolated) .NET AppDomains).</p>
http://stackoverflow.com/questions/1770170/devexpress-wpf-grid-get-number-of-rows/1770363#17703630Answer by bitbonk for DevExpress WPF Grid - get number of rowsbitbonk2009-11-20T13:15:31Z2009-11-20T13:15:31Z<p>I am not sure there is a way except by actually walking the visual tree (using VisualTreeHelper). How about something like (mygGidControl1.DataSource as ICollection).Count ?</p>
http://stackoverflow.com/questions/1769447/interesting-outofmemoryexception-with-stringbuilder0interesting OutOfMemoryException with StringBuilder bitbonk2009-11-20T09:50:26Z2009-11-20T10:49:07Z
<p>I have the need to continuously build large strings in a loop and save them to database wich currently occasioanlly yields an <code>OutOfMemoryException</code>. </p>
<p>What is basically going on here is I create a string using <code>XmlWriter</code> with <code>StringBuilder</code> based on some data. Then I call a method from an external library that converts this xml string to some other string. After that the converted string is saved to the database. This whole thing is done repeatedly in a loop about a 100 times for different data.</p>
<p>The strings by itself are not too big (below 500kByte each) and the process memory is not increasing during this loop. But still, occasionally I get a <code>OutOfMemeoryExcpetion</code> within <code>StringBuilder.Append</code>. Interestingly this exception does not result in a crash. I can catch that exception and continue the loop.</p>
<p>What is going on here? Why would I get an <code>OutOfMemoryException</code> allthough there is still enough free memory available in the system? Is this some GC heap problem? </p>
<p>Given that I can't circumvent converting all these strings, what could I do to make this work reliably? Should I force a GC collection? Should put a <code>Thread.Sleep</code> into the loop? Should I stop using <code>StringBuilder</code>? Should simply retry when confronted with a <code>OutOfMemoryException</code>?</p>
http://stackoverflow.com/questions/1729487/using-unreal-3-engine-within-a-net-application1Using Unreal 3 Engine within a .NET applicationbitbonk2009-11-13T14:19:29Z2009-11-19T16:36:09Z
<p>Now that the <a href="http://udk.com/" rel="nofollow">Unreal Development Kit for Unreal 3 engine is free</a> I am thinking about utilizing it for an appication. Do you think it is possible to emebedd a Unreal 3 powered 3D window into a .NET (WPF or Windows Forms) and control patrs of the gameobjects therein using c#? Is the egine plain c++? Or COM or is there a .NET wrapper or something?</p>
http://stackoverflow.com/questions/1756009/reactive-framework-for-net-examples-that-prove-its-usefulness0Reactive Framework for .NET examples that prove its usefulnessbitbonk2009-11-18T13:36:39Z2009-11-18T14:32:54Z
<p>There's been quite some hype around the new <a href="http://codebetter.com/blogs/matthew.podwysocki/archive/2009/10/14/introducing-the-reactive-framework-part-i.aspx" rel="nofollow">Reactive Framework</a> in .NET 4.0. While I think I undestood its basic concept I am not completely sold that it is that useful. Can you come up with a good example (that is halfway easy to understand) that totally shows of the power and usefullness of Rx? Show something that makes life so much easier when done with Rx.</p>
http://stackoverflow.com/questions/1755891/wpf-grid-layout-how-can-i-get-row-and-column-of-element-with-mousemove-or-simi/1756104#17561041Answer by bitbonk for WPF: Grid layout - how can I get row and column of element with MouseMove or similar events, when cursor is over empty cell?bitbonk2009-11-18T13:47:48Z2009-11-18T14:24:49Z<p>What you'd usually do in such situation is to add a dummy UIElement,e.g. a Border, Rectangle (or a ContentControl that later could hold your actual content) that fills the cell completely and then on MouseMove query Grid.GetColumn Grid.GetRow on the hit UIElement. You can then loop through all children of your grid and change the borders where needed.</p>
<p>But if I look at your sample picture it seems that you want display a helper lines hinting row and column of your current cell. This can be easily done using <a href="http://msdn.microsoft.com/en-us/library/ms743737.aspx" rel="nofollow">Adorners</a>. It is basically an additional layer on top of everything where you can place additional visuals that are bound to size and position of the coneceted control. You woould create an Adorner for the current cell (Border, ContentControl)</p>
http://stackoverflow.com/questions/1752432/wpf-tabcontrol-add-extra-tabs-to-a-bound-control/1752616#17526160Answer by bitbonk for WPF TabControl add extra tabs to a bound controlbitbonk2009-11-17T23:29:46Z2009-11-17T23:29:46Z<p>The easiest way is to go with <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">MVVM</a> (the example in the url acutally contains TabControl bound to a ViewModel). Your ViewModel that you bind your TabPages against could expose an observablecollection of items where the first item is always a ViewModel instance that holds you aggregate data. All follwing items are the ViewModel instances for the rest of the tabpages. Your ViewModel would also expose a ICommand <code>AddTabPage</code> wich adds a new item to the obeservablecollection. The TabPage will pick up this change automatically. You'd have a button whose Command property is bound to this command.</p>
http://stackoverflow.com/questions/1752298/what-design-pattern-should-i-use-for-import-export/1752540#17525403Answer by bitbonk for What design pattern should I use for import/export?bitbonk2009-11-17T23:11:52Z2009-11-17T23:11:52Z<p>I am not particulary familiar with those formats but I'd create an simple data transfer object that represents your genereric calendar event object. It does nothing but holding the data (pseudocode):</p>
<pre><code>class CalendarEvent
{
DateTime Date { get; }
string Title { get; }
string Description { get; }
}
</code></pre>
<p>Then you create an interface for CalendarEventReader and CalendarEventWriter (it's <strong>Strategy</strong> pattern and maybe the <strong>Builder</strong> pattern, sort of):</p>
<pre><code>interface ICalendarEventReader
{
CalendarEvent Read(Stream data);
// Add additional methods if needed e.g.:
string GetTitleOnly(Stream data);
}
interface ICalendarEventWriter
{
Stream Write(CalendarEvent event);
// Add additional methods if needed e.g.:
Stream WriteSummaryOnly(CalendarEvent event);
}
</code></pre>
<p>Then have actual implementations implement the above interfaces. One for each format. You can even think about having reader and writer in the same class:</p>
<pre><code>class CalDavConverter : ICalenderEventWriter, ICalendarEventReader
{
...
}
</code></pre>
<p>You'd then have a Repository (it's the <strong>Factory</strong> pattern maybe with <strong>Singleton</strong>) that maintains a list of ICalenderEventReader/Writer implementations for the different formats:</p>
<pre><code>static class CalenderEventConverterRepository
{
static ICalendarEventReader GetReader(string formatName /*or any other data upon wich to decide wich format is needed*/)
{
...
}
static ICalendarEventReader GetWriter(string formatName /*or any other data upon wich to decide wich format is needed*/)
{
...
}
}
</code></pre>
http://stackoverflow.com/questions/1858220/transparent-background-for-mfc-hosted-windows-forms-usercontrolComment by bitbonk on Transparent background for MFC-hosted Windows Forms UserControlbitbonk2009-12-08T17:15:23Z2009-12-08T17:15:23Z@Aidan We have a MFC based framwork that can display various controls on a dialog configured by the user. Most of them are classic MFC controls but the user can write custom Winforms UserControls too this includes animated stuff that requires double buffering. All these Controls may overlap why we need transparency at least for the UserControl. For example the user sets the background to be a image or other controls and wants a transparent UserControl on top of that.http://stackoverflow.com/questions/1847813/create-a-json-datetime-string-with-net/1849417#1849417Comment by bitbonk on create a JSON DateTime string with .NETbitbonk2009-12-06T09:01:37Z2009-12-06T09:01:37ZIs this really safe? How about UTC vs., localtime, I noticed DataContractJsonSerializer creates different strings for them. Whoknowswherelse it would create adifferent looking string....http://stackoverflow.com/questions/297759/system-io-filenotfoundexception-exception-when-attempting-to-drop-usercontrol-on/297782#297782Comment by bitbonk on System.IO.FileNotFoundException exception when attempting to drop UserControl on Form in designerbitbonk2009-12-02T06:48:14Z2009-12-02T06:48:14ZAnyway it doesn't work for either location.http://stackoverflow.com/questions/297759/system-io-filenotfoundexception-exception-when-attempting-to-drop-usercontrol-on/297782#297782Comment by bitbonk on System.IO.FileNotFoundException exception when attempting to drop UserControl on Form in designerbitbonk2009-12-02T06:43:36Z2009-12-02T06:43:36Zwindows\system2 ? Do you mean c:\Windows\System32 or c:\Windows\System ?http://stackoverflow.com/questions/1812010/how-to-implement-this-oscillation-function/1815107#1815107Comment by bitbonk on How to implement this oscillation function bitbonk2009-11-29T12:56:00Z2009-11-29T12:56:00ZCurrently I am using a streched sinus where the top and bottom amplitude a are cut off using <code>Math.Min,Math.Max</code> and http://stackoverflow.com/questions/1812010/how-to-implement-this-oscillation-function/1815107#1815107Comment by bitbonk on How to implement this oscillation function bitbonk2009-11-29T12:50:36Z2009-11-29T12:50:36ZIt is osscilating after the first period (after 10000) instead of 0 it holds 1 (for the same time as it held 0 in the first period).http://stackoverflow.com/questions/1812010/how-to-implement-this-oscillation-functionComment by bitbonk on How to implement this oscillation function bitbonk2009-11-28T16:20:41Z2009-11-28T16:20:41Z@Darin currentCounter is just integer. It is a discrete incrementation.http://stackoverflow.com/questions/1812010/how-to-implement-this-oscillation-functionComment by bitbonk on How to implement this oscillation function bitbonk2009-11-28T16:19:24Z2009-11-28T16:19:24ZBetween n in and out it is 0 for some time. Between out and in it is 1 for some time (yeah the drawing is wrong here). For simplicity the in and out function can be linear. But some easein and easout (lik in a sinus function) would be cool.http://stackoverflow.com/questions/1783130/draw-emf-antialiased/1784942#1784942Comment by bitbonk on Draw emf antialiasedbitbonk2009-11-26T22:13:36Z2009-11-26T22:13:36Z We cannot use a propietary format because we need to draw the art with a common drawing software (illustrator, inkscape, coreldraw ... one of those).http://stackoverflow.com/questions/1783130/draw-emf-antialiased/1784942#1784942Comment by bitbonk on Draw emf antialiasedbitbonk2009-11-26T12:02:21Z2009-11-26T12:02:21ZThose programs just seem to convert it to other file formats. We chose EMF to display the vector art because this is the only vectorformat that GDI+ can handle. We need to draw the art from code (hence GDI+) because we modify it dynamically at runtime and animate it. Also displaying emf with GDI+ is most likely the most CPU- and memory friendly way to display vector art. Using another format that emf just doesn't seem helpful. A cool solution would be to have a Vectorgrafik (any format) to C# GDI+ instrructions converter.http://stackoverflow.com/questions/1789603/visual-studio-make-view-code-default-using-attribute/1801667#1801667Comment by bitbonk on Visual Studio: Make view code default using attributebitbonk2009-11-26T11:53:24Z2009-11-26T11:53:24Z-1 It is not related to my question. I am looking for the Attribute name and I already said, I know how to do what you just described.http://stackoverflow.com/questions/1779539/calculate-the-bounding-box-of-a-gdi-drawing/1784627#1784627Comment by bitbonk on Calculate the bounding box of a GDI+ drawingbitbonk2009-11-24T06:26:25Z2009-11-24T06:26:25ZI wonder, how WPF (probably in DWM layer somewhere) does this.http://stackoverflow.com/questions/1779539/calculate-the-bounding-box-of-a-gdi-drawing/1784627#1784627Comment by bitbonk on Calculate the bounding box of a GDI+ drawingbitbonk2009-11-23T17:36:33Z2009-11-23T17:36:33ZMy drawings are not necessarily rectangular. For example if the drawing is a circle the rotation itself would not affect the scale factor.http://stackoverflow.com/questions/1783130/draw-emf-antialiasedComment by bitbonk on Draw emf antialiasedbitbonk2009-11-23T17:33:04Z2009-11-23T17:33:04ZI tried this, at small sizes this still looks ugly Also using this approach there is proably a ugly memory overhead. (I will be displaying lots of such UserControls at once).http://stackoverflow.com/questions/1779539/calculate-the-bounding-box-of-a-gdi-drawingComment by bitbonk on Calculate the bounding box of a GDI+ drawingbitbonk2009-11-23T09:52:27Z2009-11-23T09:52:27ZThe fillmode/stretchmode I am after is Uniform and UniformToFill (like in WPF's Viewbox). The emf should not be distorted an in Uniform mode the emf completely fills the usercontrol at least in one dimension, nothing is cropped. In UniformToFill the emf filles the UserControl in both dimensions and if the aspectratios do not match, the emf is cropped in one dimension.