User apandit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:34:11Zhttp://stackoverflow.com/feeds/user/6128http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1002232/refreshing-ui-with-databind-in-wpf1Refreshing UI with databind in WPFapandit2009-06-16T15:27:31Z2009-11-19T14:43:59Z
<p>I have a 3 layer deep treeview,</p>
<pre>
-MAIN
->:SUB1
>:SUB2
>:SUB2
-X:SUB1
X:SUB2
SUB1
SUB1
</pre>
<p>where, > and X represent graphics denoting the status of that specific item (determined from backend).</p>
<p>I'm using an Observable Dictionary to bind to this tree (and it has an ICollectionChanged event). The structure is like this:</p>
<pre>
<code>
ObservableDictionary<string,CustomClass> mainitems;
public class CustomClass{
ObservableDictionary<string, InnerClass> sub1item;
// Bunch of properties and methods in this class
// INotify not implemented
}
public class InnerClass{
// Bunch of properties and methods in this class
// INotify not implemented
public SomeEnum Status{
get{ return this.status; }
}
}
</code>
</pre>
<p>The graphics, mentioned above, are binded using a custom converter which converts the Status enum to a path so that it can be binded (ie. <img source="{Binding Path=something, Converter={StaticResource someconverter}, Mode=OneWay" /> ).</p>
<p><strong>QUESTION:</strong></p>
<p>My problem is, when I update the CustomClass's sub1item dictionary with new statuses, it doesn't update it in the UI. I think implementing INotify stuff might work but I don't know where I need to update it and exactly how to do so.</p>
<p><strong>Edit:</strong>
My XAML template for the treeview is as follows:</p>
<pre>
<code>
<TreeView Name="tvInstance" ItemsSource="{Binding}" TreeViewItem.Selected="tviSelected" IsTextSearchEnabled="True">
<TreeView.ItemContainerStyle>
<Style>
<Setter Property="TreeViewItem.IsExpanded" Value="{Binding Path=Value.Expanded, Mode=TwoWay}" />
</Style>
</TreeView.ItemContainerStyle>
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Path=Value.CustomClass}" ItemContainerStyle="{x:Null}">
<StackPanel Orientation="Horizontal">
<Label Content="{Binding Path=Key}"/>
</StackPanel>
<HierarchicalDataTemplate.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Path=Value.AnotherClass}">
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Path=Value.Status, Converter={StaticResource convertstatus} }"
Width="10" Height="10"/>
<Label Content="{Binding Path=Key}" />
</StackPanel>
<HierarchicalDataTemplate.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Path=Value, Converter={StaticResource convertstatus} }"
Width="10" Height="10"/>
<Label Content="{Binding Path=Key}" />
</StackPanel>
</DataTemplate>
</HierarchicalDataTemplate.ItemTemplate>
</HierarchicalDataTemplate>
</HierarchicalDataTemplate.ItemTemplate>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</TreeView>
</code>
</pre>
<p>EDIT: After adding all INotifyProperty events in my mainclass, my CustomClass, and my InnerClass, it still doesn't work. I'm using the Dr. WPF version of ObservableDictionary (and using a dictionary is crucial to my application since I need to do lots of lookups). Help!</p>
http://stackoverflow.com/questions/1208176/binding-to-a-sum-of-selecteditems-in-wpf-gridview/1208274#12082742Answer by apandit for Binding to a sum of SelectedItems in WPF GridViewapandit2009-07-30T18:01:38Z2009-07-30T18:01:38Z<p>You're going to have to use a converter for this. An example:
Xaml:</p>
<pre>
<code>
<MultiBinding StringFormat=" {0} Files Selected. {1} MB">
<Binding ElementName="FilesList" Path="SelectedItems.Count"></Binding>
<Binding ElementName="FilesList" Path="SelectedItems" Converter="{StaticResource sumconverter}"></Binding>
</MultiBinding>
</code>
</pre>
<p>Codebehind:</p>
<pre>
<code>
[ValueConversion(typeof(ListViewItem[]), typeof(string))]
class SumConverter : IValueConverter {
public object Convert( object value, Type targetType, object parameter, CultureInfo culture ) {
int size = 0;
ListViewItem[] items = (ListViewItem[])value;
if(items != null){
foreach(var lvi in items){
Someclass sc = lvi.content as Someclass;
if(sc!=null){
size += sc.Size;
}
}
}
return (size / 1000) + "MB";
}
public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture ) {
return null;
}
}
</code>
</pre>
http://stackoverflow.com/questions/1133761/css-and-order-of-styles/1133787#11337872Answer by apandit for CSS and order of stylesapandit2009-07-15T20:24:49Z2009-07-16T18:26:33Z<p>When you write a style like "text_left", you might want to use !important. This will override any other styles that set that value.</p>
<p>The following works.</p>
<pre>
<code>
.text_left
{
text-align:left !important;
}
.text_right
{
text-align:right !important;
}
.text_cen
{
text-align:center !important;
}
.form_container_header
{
width:95%;
margin-left: auto ;
margin-right: auto ;
margin-bottom:35px;
text-align:center;
}
<div class="form_container_header text_left">
EDIT: Please read the comments on this answer before doing this. There are some concerns about using !important recklessly.
</code>
</pre>
http://stackoverflow.com/questions/1074450/sed-replace-part-of-a-line/1074469#10744690Answer by apandit for sed: Replace part of a line.apandit2009-07-02T13:53:10Z2009-07-02T13:53:10Z<p>You're escaping your ( and ). I'm pretty sure you don't need to do that. Try:</p>
<pre>
sed -rne 's/(dbservername)[[:blank:]]+\([[:alpha:]]+\)/\1 yyy/gip'
</pre>
http://stackoverflow.com/questions/1065465/how-can-i-find-the-month-when-all-i-have-is-the-week-number-in-c/1065512#10655120Answer by apandit for How can I find the Month when all I have is the week number in c#apandit2009-06-30T19:22:51Z2009-06-30T21:38:42Z<p>Note: Don't use this code. It doesn't work too well.</p>
<p>EDIT: Fixed year, month, day thing (was month, day, y ear before)</p>
<pre>
<code>
int year = 8;
int weeks = 25;
int days = weeks * 7;
int month = 1;
int[] cutoff = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
for(int i = 0; i < 12; i++){
if(days > cutoff[i]){
days -= cutoff[i];
month++;
} else {
break;
}
}
DateTime dt = new DateTime(year, month, day);
</code>
</pre>
http://stackoverflow.com/questions/1049311/wpf-data-binding-enable-disable-a-control-based-on-content-of-var/1049356#10493562Answer by apandit for WPF Data Binding : enable/disable a control based on content of var?apandit2009-06-26T14:09:54Z2009-06-26T21:27:15Z<p>Since you're probably looking to bind the IsEnabled property of the button based on a string, try making a converter for it.</p>
<p>Ie... <pre><code>
<StackPanel>
<StackPanel.Resources>
<local:SomeStringConverter mystringtoboolconverter />
</StackPanel.Resources>
<Button IsEnabled="{Binding ElementName=mytree, Path=SelectedItem.Header, Converter={StaticResource mystringtoboolconverter}}" />
<StackPanel>
</code></pre></p>
<p>and the converter:</p>
<pre>
<code>
[ValueConversion(typeof(string), typeof(bool))]
class SomeStringConverter : IValueConverter {
public object Convert( object value, Type targetType, object parameter, CultureInfo culture ) {
string myheader = (string)value;
if(myhead == "something"){
return true;
} else {
return false;
}
}
public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture ) {
return null;
}
}
</code>
</pre>
<p>EDIT:
Since the OP wanted to bind to a variable, something like this needs to be done:</p>
<pre>
<code>
public class SomeClass : INotifyPropertyChanged {
private string _somestring;
public string SomeString{
get{return _somestring;}
set{ _somestring = value; OnPropertyChanged("SomeString");}
}
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
</code>
</pre>
<p>Then, change the above binding expression to:</p>
<pre>
{Binding Path=SomeString, Converter={StaticResource mystringtoboolconverter}}
</pre>
<p>Note, you MUST implement INotifyPropertyChanged for your UI to be updated.</p>
http://stackoverflow.com/questions/1050737/wpf-change-a-buttons-content-in-a-style/1050781#10507811Answer by apandit for WPF - Change a button's content in a style?apandit2009-06-26T19:21:06Z2009-06-26T19:21:06Z<p>Pretty sure you'd want to use a control template in this sort of situation. Something like:</p>
<pre>
<code>
<style>
<Setter Property="Content">
<Setter.Value>
<ControlTemplate>
<Image Img="something.jpg" />
</ControlTemplate>
</Setter.Value>
</Setter>
</style></code>
</pre>
<p>And add a control template in the trigger for the on-hover.</p>
<p>Here's a good <a href="http://www.wpftutorial.net/Templates.html" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/1015126/observable-collection-property-changed-on-item-in-the-collection/1015330#10153300Answer by apandit for Observable Collection Property Changed on Item in the Collectionapandit2009-06-18T21:36:48Z2009-06-18T21:42:13Z<p>This works. Whenever the collection changes, it re-sorts the collection. Might be doable in a more efficient way but this is the gist of it.</p>
<pre>
<code>
public partial class TestWindow : Window {
ObservableCollection<TestClass> oc;
public TestWindow() {
InitializeComponent();
// Fill in the OC for testing
oc = new ObservableCollection<TestClass>();
foreach( char c in "abcdefghieeddjko" ) {
oc.Add( new TestClass( c.ToString(), c.ToString(), c.GetHashCode() ) );
}
lstbox.ItemsSource = oc;
// Set up the sorting (this is how you did it.. doesn't work)
lstbox.Items.SortDescriptions.Add( new SortDescription("A", ListSortDirection.Ascending) );
// This is how we're going to do it
oc.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler( oc_Sort );
}
void oc_Sort( object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e ) {
// This sorts the oc and returns IEnumerable
var items = oc.OrderBy<TestClass, int>( ( x ) => ( x.C ) );
// Rest converst IEnumerable back to OC and assigns it
ObservableCollection<TestClass> temp = new ObservableCollection<TestClass>();
foreach( var item in items ) {
temp.Add( item );
}
oc = temp;
}
private void Button_Click( object sender, RoutedEventArgs e ) {
string a = "grrrr";
string b = "ddddd";
int c = 383857;
oc.Add( new TestClass( a, b, c ) );
}
}
public class TestClass : INotifyPropertyChanged {
private string a;
private string b;
private int c;
public TestClass( string f, string g, int i ) {
a = f;
b = g;
c = i;
}
public string A {
get { return a; }
set { a = value; OnPropertyChanged( "A" ); }
}
public string B {
get { return b; }
set { b = value; OnPropertyChanged( "B" ); }
}
public int C {
get { return c; }
set { c = value; OnPropertyChanged( "C" ); }
}
#region onpropertychanged
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged( string propertyName ) {
if( this.PropertyChanged != null ) {
PropertyChanged( this, new PropertyChangedEventArgs( propertyName ) );
}
}
#endregion
}
</code>
</pre>
<p>XAML:</p>
<pre>
<Window x:Class="ServiceManager.TestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="TestWindow" Height="500" Width="500">
<DockPanel>
<ListBox ItemsSource="{Binding}" x:Name="lstbox">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Label Content="{Binding Path=A}"/>
<Label Content="{Binding Path=B}"/>
<Label Content="{Binding Path=C}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Button Click="Button_Click" Content="Click" />
</DockPanel>
</Window>
</pre>
http://stackoverflow.com/questions/1015016/return-enum-from-function-c/1015032#10150320Answer by apandit for Return Enum From Function C#apandit2009-06-18T20:29:46Z2009-06-18T20:29:46Z<p>Use types... ie..</p>
<pre>
<code>
public Type ChooseCase{
get{ return typeof(Uppercase); }
}
</code>
</pre>
http://stackoverflow.com/questions/1007438/anonymous-method-as-parameter-to-begininvoke/1007510#10075101Answer by apandit for Anonymous method as parameter to BeginInvoke?apandit2009-06-17T14:45:39Z2009-06-17T15:07:31Z<p>I've tried a bunch of different methods but none work. ie...</p>
<pre>
<code>
// Fails -- cannot convert lamda to System.Delegate
mnMnu.BeginInvoke( (DIServer svr)=> {ConfigureMainMenu(server);}, new object[] server);
// Fails -- cannot convert anonymous method to System.Delegate
mnMnu.BeginInvoke( new delegate(DIServer svr){ConfigureMainMenu(server);}, new object[] server);
</code>
</pre>
<p>So, the short answer is no. You could create short helper delegates in the given context and use lamdas to make it a bit neater but that's pretty much it.</p>
<p>EDIT: Turns out I'm wrong. The methodinvoker answer below works.
See this <a href="http://www.csharper.net/blog/methodinvoker%5F%5F%5Fanonymous%5Fmethods%5F%5F%5Fteh%5Fr0x0r.aspx" rel="nofollow">page</a></p>
http://stackoverflow.com/questions/997968/how-can-i-call-a-static-method-from-a-class-if-all-i-have-is-a-string-of-the-clas/998004#9980041Answer by apandit for How can I call a static method from a class if all I have is a string of the class name?apandit2009-06-15T19:46:00Z2009-06-15T19:46:00Z<p>Reflection (PHP 5 supports it) is how you'd do this. Read that page and you should be able to figure out how to invoke the function like that.</p>
<pre><code>
$func = new ReflectionFunction('somefunction');
$func->invoke();
</code></pre>
<p><a href="http://nz.php.net/oop5.reflection" rel="nofollow">Documentation Link</a></p>
http://stackoverflow.com/questions/997949/string-and-repeater/997975#9979754Answer by apandit for string [,] and repeaterapandit2009-06-15T19:42:10Z2009-06-15T19:42:10Z<p>Looks like you should be using enums in this case... ie...</p>
<pre>
<code>
enum Month = {January=1, February, March};
Month month = Month.January;
Month alsomonth = (Month)(1); // Should work
</code>
</pre>
http://stackoverflow.com/questions/987968/fast-way-to-manually-mod-a-number/988031#9880316Answer by apandit for Fast way to manually mod a numberapandit2009-06-12T17:43:58Z2009-06-12T19:17:07Z<p>Fast Modular Exponentiation (I think that's what it's called) might work.</p>
<pre>
Given a, b, c and a^b (mod c):
1. Write b as a sum of powers of 2. (If b=72, this is 2^6 + 2^3 )
2. Do:
(1) a^2 (mod c) = a*
(2) (a*)^2 (mod c) = a*
(3) (a*)^2 (mod c) = a*
...
(n) (a*)^2 (mod c) = a*
3. Using the a* from above, multiply the a* for the powers of 2 you identified. For example:
b = 72, use a* at 3 and a* at 6.
a*(3) x a*(6) (mod c)
4. Do the previous step one multiplication at a time and at the end, you'll have a^b % c.
</pre>
<p>Now, how you're going to do that with data types, I don't know. As long as your datatype can support c^2, i think you'll be fine.</p>
<p>If using strings, just create string versions of add, subtract, and multiply (not too hard). This method should be quick enough doing that. (and you can start step 1 by a mod c so that a is never greater than c).</p>
<p>EDIT: Oh look, a wiki page on <a href="http://en.wikipedia.org/wiki/Modular%5Fexponentiation" rel="nofollow">Modular Exponentiation</a>.</p>
http://stackoverflow.com/questions/970523/generating-xsd-for-serialized-xml0Generating XSD for serialized XMLapandit2009-06-09T14:52:12Z2009-06-09T15:32:15Z
<p>Currently, I have an xml file that looks like this...</p>
<pre>
<code>
<ArrayOfService>
<Service>
<Name>
Something
</Name>
<Id>
8003
</Id>
</Service>
</ArrayOfService>
</code>
</pre>
<p>This is automatically generated from a class that looks like this...</p>
<pre><code>
public class Service{
public string Name;
public int Id;
public Service(){
}
}
</code></pre>
<p>To turn the class into XML, I use...</p>
<pre><code>
XmlSerializer xs = new XmlSerializer( typeof(Service) );
xs.Serialize( context.Response.OutputStream, FunctionReturnsTypeService() );
</code></pre>
<p>Is there any way to also automatically generate an XSD like this?</p>
<p>EDIT:</p>
<p>Also, is there any way to add this schema to the xml as I'm serializing it?</p>
http://stackoverflow.com/questions/911248/net-event-for-application-losing-and-gaining-focus/911274#9112740Answer by apandit for .NET Event for Application losing and gaining focusapandit2009-05-26T15:22:10Z2009-05-26T15:29:14Z<p>For WPF, <em>FocusChanged</em> on the window. There should be a similar event in Winforms. You can find out using the intellisense on Visual Studio.</p>
<p><em>Activated/Deactivated</em> seems to be standard though.</p>
http://stackoverflow.com/questions/139984/replacing-quicktest-professional-qtp-i-need-a-tool-to-test-java-applications2Replacing QuickTest Professional (QTP) -- I need a tool to test Java Applicationsapandit2008-09-26T14:47:20Z2009-02-26T23:56:54Z
<p>Right now, I'm testing a Java Application with QTP (really expensive software). </p>
<p>I decided to move my web application testing to Selenium (using Java) and I was wondering if there were any other good tools to test my Java Application or if there are some libraries that tell allow me to click/type into Java Applications like Selenium does for web applications.</p>
<p>I'm looking for something like Selenium but for Java Applications (ie. if you wanted to test Eclipse IDE, you'd use this).</p>
http://stackoverflow.com/questions/158151/how-can-i-save-a-screenshot-directly-to-a-file-in-windows/158273#1582730Answer by apandit for How can I save a screenshot directly to a file in Windows?apandit2008-10-01T15:40:05Z2008-10-01T15:40:05Z<p>You may want something like this: <br />
https://addons.mozilla.org/en-US/firefox/addon/5648<br /></p>
<p>I think there is a version for IE and also with Explorer Integration. Pretty good software.</p>
http://stackoverflow.com/questions/157747/vbscript-using-error-handling2VBScript -- Using error handlingapandit2008-10-01T14:04:32Z2008-10-01T14:36:39Z
<p>Hi all,</p>
<p>I want to use VBScript to catch errors and log them (ie on error "log something") then resume the next line of the script.</p>
<p>For example,</p>
<pre>
On Error Resume Next
'Do Step 1
'Do Step 2
'Do Step 3
</pre>
<p>When an error occurs on step 1, I want it to log that error (or perform other custom functions with it) then resume at step 2. Is this possible? and how can I implement it?</p>
<p>EDIT: Can I do something like this?</p>
<pre>
On Error Resume myErrCatch
'Do step 1
'Do step 2
'Do step 3
myErrCatch:
'log error
Resume Next
</pre>
http://stackoverflow.com/questions/157761/date-time-formats-for-various-countries/157778#1577781Answer by apandit for Date/time formats for various countriesapandit2008-10-01T14:10:08Z2008-10-01T14:10:08Z<p>This webpage shows how to use date and time based on culture settings:<br />
<a href="http://msdn.microsoft.com/en-us/library/5hh873ya.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/5hh873ya.aspx</a></p>
<p>I'm assuming you're programming something so this would probably help you create a date-time based on the environmental settings.</p>
<p>As for using Windows settings vs researched settings, go with Windows settings if you're making something for Windows.</p>
http://stackoverflow.com/questions/153286/what-to-learn-first/153314#1533149Answer by apandit for What to learn first?apandit2008-09-30T14:30:41Z2008-09-30T14:30:41Z<p>You should learn at least 1 compiled language (like C# or Java) and 1 Script Language (Python, Ruby, etc). This is usually enough to help most developers succeed at what they do, regardless of the age of the language.</p>
<p>As for new vs old, I'd stick with C# for now as it's pretty popular. Learning a new language wouldn't be too bad though.</p>
http://stackoverflow.com/questions/141606/how-can-i-hide-content-in-a-html-file-from-search-engines/141617#1416170Answer by apandit for How can I hide content in a HTML file from search engines?apandit2008-09-26T20:01:43Z2008-09-26T20:01:43Z<p>Hmm... maybe you can create a <div> with position: absolute; z-index: 99 (should be greater than 1); top: 0px; -- this should put the note at the top of the page but you could place the actual code near the bottom... search engines go linearly through the source and not by position I'd assume.</p>
<p>Edit: And this is fail if you decide you want it located somewhere else since this is an absolute location-- it'll just break down.. :\. go with the javascript</p>
http://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php/116302#1163021Answer by apandit for What is the best IDE for PHP ?apandit2008-09-22T17:37:56Z2008-09-22T17:37:56Z<p><a href="http://www.ibm.com/developerworks/opensource/library/os-php-ide/index.html" rel="nofollow">http://www.ibm.com/developerworks/opensource/library/os-php-ide/index.html</a></p>
<p>Personally, I love Notepad++... :D . The above link compares some of the better IDEs and the best ones aren't free.</p>
<p>I'd recommend Komodo 4.4 though (I used the trial version) since it was awesome. Better than Notepad++, but not free... :(</p>
http://stackoverflow.com/questions/116261/software-for-managing-medium-sized-projects/116290#1162900Answer by apandit for Software for managing medium sized projectsapandit2008-09-22T17:34:57Z2008-09-22T17:34:57Z<p>You might want to try out Mantis (www.mantisbt.org). It is a little cumbersome at first, but with a little bit of customization, it will work for you. It has SVN integration, and a bunch of other stuff which I haven't used yet... :|... such as Mobile support, Wiki support, etc.</p>
<p>And it's OSS (Open Source Software). Written in PHP, works with MySQL, or PostgreSQL. Just check it out, it's good.</p>
<p><a href="http://www.mantisbt.org/" rel="nofollow">http://www.mantisbt.org/</a></p>
http://stackoverflow.com/questions/115819/lightweight-x-window-manager-environment/115832#1158324Answer by apandit for Lightweight X window manager/environmentapandit2008-09-22T16:17:22Z2008-09-22T16:17:22Z<p>Fluxbox is a good alternative and very lightweight.</p>
<p><a href="http://www.fluxbox.org/" rel="nofollow">http://www.fluxbox.org/</a></p>
http://stackoverflow.com/questions/105349/bash-prompt-in-os-x-terminal-broken/105363#1053630Answer by apandit for Bash prompt in OS X terminal brokenapandit2008-09-19T20:33:57Z2008-09-19T20:33:57Z<p>If the problem seems to be with the newline, try putting \r\n instead of just \n and see if it makes a difference.</p>
http://stackoverflow.com/questions/105190/should-i-learn-assembly-programming/105211#1052113Answer by apandit for Should I learn Assembly programming?apandit2008-09-19T20:20:14Z2008-09-19T20:20:14Z<p>As just a developer, learning Assembly language may not be a very good investment for you. If you're looking at a career in enterprise programming (ie. Java Applications, .NET applications, Web applications), Assembly probably isn't for you. <br /></p>
<p>However, if you are going into engineering (particularly Electrical or Computer), then, yes, you should learn it. If you're not going to bother with embedded devices, Assembly isn't for you.</p>
http://stackoverflow.com/questions/105100/css-display-differences/105117#1051178Answer by apandit for CSS: Display differencesapandit2008-09-19T20:10:24Z2008-09-19T20:10:24Z<p>display: block <br />will cause the object to force other objects within a container on to a new line.</p>
<p>display: inline <br />tries to display the object on the same line as other objects.</p>
<p>display:block</p>
<pre>
Item 1
Item 2
Item 3
</pre>
<p>display:inline</p>
<pre>
Item 1 Item 2 Item 3
</pre>
http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87335#873350Answer by apandit for Calculating frames per second in a gameapandit2008-09-17T20:33:34Z2008-09-17T20:33:48Z<p>Increment a counter every time you render a screen and clear that counter for some time interval over which you want to measure the frame-rate.</p>
<p>Ie. Every 3 seconds, get counter/3 and then clear the counter.</p>
http://stackoverflow.com/questions/87222/representing-crlf-using-hex-in-c/87243#872430Answer by apandit for representing CRLF using Hex in C#apandit2008-09-17T20:26:04Z2008-09-17T20:26:04Z<p>\r\n...
ie.</p>
<pre>
Console.Write("This is a test of CRLF. \r\n This is on the next line.");
</pre>
<p><a href="http://comstock-software.com/blogs/aspnet2csharp/2007/03/c-char-for-crlf-in-ascii-hex-decimal_24.html" rel="nofollow">See this article.</a></p>
http://stackoverflow.com/questions/83225/how-to-set-up-the-browser-scrollbar-to-scroll-part-of-a-page/83264#832640Answer by apandit for How to set up the browser scrollbar to scroll part of a page?apandit2008-09-17T13:35:01Z2008-09-17T13:40:52Z<p>For a div, you can add in the cSS</p>
<pre>
overflow: auto
</pre>
<p>For example,</p>
<pre>
<div style="overflow:auto; height: 500px">Some really long text</div>
</pre>
<p>Edit: After looking at the site you posted, you probably don't want this. What he does in his website is make the layout as fixed (position: fixed) and assigns it a higher z-index than the text, which is lower z-index.</p>
<p>For example:</p>
<pre>
<div class="highz"> //Put random stuff here. it'll be fixed </div>
<div class="lowz"> Put stuff here you want to scroll and position it.</div>
</pre>
<p>with css file</p>
<pre>
div.highz {position: fixed; z-index: 2;}
div.lowz {position: fixed; z-index: 1;}
</pre>
http://stackoverflow.com/questions/1208176/binding-to-a-sum-of-selecteditems-in-wpf-gridview/1208274#1208274Comment by apandit on Binding to a sum of SelectedItems in WPF GridViewapandit2009-07-31T15:27:56Z2009-07-31T15:27:56ZIt should automatically refresh on selectionChanged since you're using SelectedItems as your binding source. If that doesn't work, you could always try to access the binding and refresh it.http://stackoverflow.com/questions/1160474/interacting-with-the-browser-using-cComment by apandit on interacting with the browser using C#apandit2009-07-21T17:25:45Z2009-07-21T17:25:45ZTo clarify your question, do you want to open an instance of a browser with filled in form values? Or do you want to submit form values to a webapp and show the result in the Winform app?http://stackoverflow.com/questions/1065465/how-can-i-find-the-month-when-all-i-have-is-the-week-number-in-c/1065512#1065512Comment by apandit on How can I find the Month when all I have is the week number in c#apandit2009-06-30T19:26:11Z2009-06-30T19:26:11Zit fails for more than that, lolhttp://stackoverflow.com/questions/1049311/wpf-data-binding-enable-disable-a-control-based-on-content-of-var/1049356#1049356Comment by apandit on WPF Data Binding : enable/disable a control based on content of var?apandit2009-06-26T21:21:48Z2009-06-26T21:21:48ZYou have to add an OnPropertyChanged to the var then. I've got it binded to a selection change in the List right now. If you want something like, var something = somethingnew; and have that reflected in the UI, you're going to have to make that var a property and implement INotifyPropertyChanged... I'll add this to my post.http://stackoverflow.com/questions/1050953/wpf-toolbar-how-to-remove-grip-and-overflowComment by apandit on WPF ToolBar: how to remove grip and overflowapandit2009-06-26T19:56:37Z2009-06-26T19:56:37ZYou could probably do it by overwriting the control template... but I wouldn't recommend it.http://stackoverflow.com/questions/1049311/wpf-data-binding-enable-disable-a-control-based-on-content-of-var/1049356#1049356Comment by apandit on WPF Data Binding : enable/disable a control based on content of var?apandit2009-06-26T19:43:12Z2009-06-26T19:43:12Zbasically, yeah. The button's value changes when the SelectedItem changes. If you want to change it based on something else, bind it to that instead. The most important part is that you're binding a string to the button and using a converter to make it a bool.http://stackoverflow.com/questions/1049446/wpf-how-do-i-prevent-tearing-with-writeablebitmap/1050785#1050785Comment by apandit on WPF: How do I prevent tearing with WriteableBitmap?apandit2009-06-26T19:23:16Z2009-06-26T19:23:16ZI concur. BeginInvoke() is asynchronous. Use Invoke() and it should synchronize nicely (though you might notice lag).http://stackoverflow.com/questions/1033809/should-a-sln-be-committed-to-source-controlComment by apandit on Should a .sln be committed to source control?apandit2009-06-23T17:27:32Z2009-06-23T17:27:32ZI believe it's the .SUO file you DON'T want to commit.http://stackoverflow.com/questions/1015126/observable-collection-property-changed-on-item-in-the-collectionComment by apandit on Observable Collection Property Changed on Item in the Collectionapandit2009-06-18T21:19:12Z2009-06-18T21:19:12ZSo, you're binding your OC to a Listbox and have the sortdescription on the listbox?http://stackoverflow.com/questions/1007438/anonymous-method-as-parameter-to-begininvoke/1007612#1007612Comment by apandit on Anonymous method as parameter to BeginInvoke?apandit2009-06-17T15:05:06Z2009-06-17T15:05:06Zwhat library is MethodInvoker from? using System.?http://stackoverflow.com/questions/1003883/treeview-item-loses-selection-when-focus-is-lostComment by apandit on Treeview Item Loses Selection When Focus Is Lostapandit2009-06-17T15:00:32Z2009-06-17T15:00:32ZI would assume it's a bug in WPF. Report it perhaps?http://stackoverflow.com/questions/1007438/anonymous-method-as-parameter-to-begininvoke/1007554#1007554Comment by apandit on Anonymous method as parameter to BeginInvoke?apandit2009-06-17T14:55:31Z2009-06-17T14:55:31ZDoesn't work, can't convert type lamda to System.Delegatehttp://stackoverflow.com/questions/1003883/treeview-item-loses-selection-when-focus-is-lostComment by apandit on Treeview Item Loses Selection When Focus Is Lostapandit2009-06-16T21:21:08Z2009-06-16T21:21:08ZAnd it seems that double clicking the child element works correctly but not single clicking... :Shttp://stackoverflow.com/questions/1003883/treeview-item-loses-selection-when-focus-is-lostComment by apandit on Treeview Item Loses Selection When Focus Is Lostapandit2009-06-16T21:04:25Z2009-06-16T21:04:25ZJust a little refactoring comment, instead of putting the Selected event in each treeview item, you can: <TreeView Margin="6" TreeViewItem.Selected="TreeViewItem_Selected" />;http://stackoverflow.com/questions/1002232/refreshing-ui-with-databind-in-wpf/1002345#1002345Comment by apandit on Refreshing UI with databind in WPFapandit2009-06-16T16:55:27Z2009-06-16T16:55:27ZI've attempted everything but adding the sub1item.CollectionChanged +=... line (which I can't do since my Dictionary's CollectionChanged event is protected). Also, I noticed you used NotifyChange and NotifyPropertyChanged and I assume they were the same...
Any other ideas?