Tagged Questions
The stringformat tag has no wiki summary.
17
votes
3answers
17k views
How to use StringFormat in XAML elements?
I'm deep in a XAML stack of elements binding to orders.
The order date displays as e.g. "12/31/2008 12:00:00 AM".
I want it to display as e.g. "31.12.2008".
How can I do this? I have seen other ...
9
votes
3answers
5k views
Actionscript 3.0 String With Format?
How can i format a string with supplied variables in AS3?
//vars
var myNumber:Number = 12;
var myString:String = "Months";
var myObject:MovieClip = year;
//string
myString.txt = "One (?) consists of ...
7
votes
1answer
1k views
StringFormat and Multibinding with Label
I would like to use StringFormat to do someting like this :
<Label x:Name="myLabel">
<Label.Content>
<Multibinding StringFormat="{}{0} - {1}">
<Binding ...
6
votes
2answers
1k views
WPF TextBox Binding with Formatting
I have just upgraded our wpf application from 3.5sp1 to 4.0.
The code below we use to bind the textbox to the underlying view model. The textbox is editable.
<TextBox ...
5
votes
2answers
89 views
Binding with StringFormat on a custom control
I'm trying to use a custom control in a WPF app, and I have some problem using a StringFormat binding.
The problem is easy to reproduce. First, let's create a WPF application and call it ...
5
votes
5answers
4k views
How to format TimeSpan in xaml
I am trying to format a textblock which is bound to a TimeSpan property.It works if the property is of type DateTime but it fails if it is a TimeSpan .I can get it done using a converter.But i am ...
5
votes
1answer
4k views
WPF binding StringFormat syntax
How can I format a decimal value conditionally in a WPF window?
Value should be rounded to a whole number (Ex: 1,234)
When the value is 0.00, it should display as a single zero. (Ex: 0)
Currently ...
4
votes
3answers
379 views
Precision specifier as parameter like printf but in String.Format
Using printf i could specify the precision value as an extra parameter using *. Does the same functionality exist in the C# String.Format?
edit: For example:
Console.WriteLine("{0:D*}",1,4); // ...
4
votes
1answer
738 views
WPF XAML StringFormat: Culture Workaround broken in C# 4.0?
The work around...
FrameworkElement.LanguageProperty.OverrideMetadata(
typeof(FrameworkElement),
new FrameworkPropertyMetadata(
...
4
votes
1answer
2k views
WPF - HeaderStringFormat Doesn't work in Expander
I can't seem to find the magic combination to make the HeaderStringFormat work for a WPF Expander.
Here are all the things I've tried:
<Expander Header="{Binding Path=MyProperty, ...
3
votes
1answer
201 views
Silverlight XAML StringFormat : Print a number with a space as thousand separator
I want to format a number like this :
100000000 => 100 000 000 or -1500 => -1 500 or -500 => -500
For now I'm using this method, but it doesn't work well with negative values :
<TextBlock ...
3
votes
3answers
87 views
Java ME: easiest way to format strings?
In Java ME, I need to do a simple string substitution:
String.format("This string contains placeholders %s %s %s", "first", "second", "third");
Placeholders don't have to be at the end of the string:
...
3
votes
2answers
299 views
WPF: StringFormat is ignored
This is my binding (shortened, Command-Property is also bound)
<MenuItem Header="Key" CommandParameter="{Binding StringFormat='Key: {0}', Path=PlacementTarget.Tag, RelativeSource={RelativeSource ...
3
votes
1answer
84 views
Do these formatting conventions mean something?
String.Format("{0:d}", item.ReleaseDate)
In the above code 'd' is used for location holder for item.ReleaseDate
Whereas in
String.Format("{0:c}", item.Price)
'c' is used for placeholder for ...
3
votes
1answer
1k views
Does StringFormat feature of WPF Xaml work on Label.Content?
I have bind my Amount Label's Content Property to a decimal property via DataContext. I am trying to apply stringformat but see no effect. Does StringFormat feature work on Label controls ?? Please ...
3
votes
2answers
619 views
Binding StringFormat
I have a collection of textblocks that I'm going to be showing and I'm needing the text of each textblock to be displayed differently. I'm currently saving the format string in the tag property and ...
3
votes
4answers
285 views
String.Format in C# not returning modified int value
I am tring to return an int value with comma seperators within the value.
12345 would be returned as 12,345
The follwing code works:
int myInt = 1234567;
MessageBox.Show(string.Format("My number is ...
3
votes
1answer
1k views
WPF: Textbox Binding with StringFormat={}{0:F2}. Don't show zero's
I am binding an object to a TextBox with the following XAML:
<TextBox Name="MyTextBox" Text="{Binding Path=MyValue, Mode=TwoWay, StringFormat={}{0:F2}}" />
Naturally when I bind a new object ...
3
votes
1answer
2k views
WPF StringFormat={0:C} showing as dollars
Why does this line of code
<TextBlock Text="{Binding Net, StringFormat=c}"/>
Output the result as $xx.xx when all my regional settings are set to UK. I expect it to output it as £xx.xx. Any ...
3
votes
1answer
400 views
How to use Quotation Marks in StringFormat of Binding in WPF
I'm trying to wrap a TextBlock's Text property (which is a string that is pulled from the database) in quotes without using a converter; I'd never tried the Binding's StringFormat property before ...
2
votes
3answers
84 views
WPF Binding behaviour with Stringformat different than with code?
In some of my projets, I sometime do things like
TxtBox.Text = 10000.ToString("#,0.00") ' TxtBox.Text content = 10 000.00
However, if I have a DataGridTextBoxColumn with binding like this :
...
2
votes
3answers
44 views
insert phone number in a table
How to insert a phone number into a table using asp.net?
string insertquery =
"insert customer (
id, name, address, gender, DOB, contactno, email, userid, password)
values
...
2
votes
1answer
99 views
Can't use apostrophe in StringFormat of a XAML binding?
I'm trying use StringFormat to insert apostrophies (apostrophe's?) around a value that is bound to a TextBlock:
<TextBlock Text="{Binding MyValue, StringFormat='The value is ...
2
votes
6answers
99 views
How is String.Format method treated?
As is described at Microsoft Site ,String.Format arranges some String Variables into a single String and is another way how to concate string's in c#.
string.Format("Name = {0} Surname = ...
2
votes
3answers
194 views
FxCop CA1305: CurrentCulture vs. CurrentUICulture
So, I have a few resource files for localization. They're strings that can be formatted.
For example:
MyResource.resx
Title: "MyApp - Ver: {0}"
I then return it by doing like so:
public String ...
2
votes
0answers
976 views
WPF DataGrid cell string format as a style or template
I tried several ways to factor out the format of a cell in a WPF DataGrid (the one provided with .NET 4):
a data converter,
the "StringFormat" binding property within a style,
the "StringFormat" ...
2
votes
1answer
260 views
Error in Visual Studio 2010 designer when binding using StringFormat
I'm using Silverlight and in my xaml I try to bind an Image source with StringFormat like the example in WPF Image Dynamically changing Image source during runtime
But when I add '&' in my ...
2
votes
2answers
569 views
Hide multibinding stringformat when binding returns null
I was looking to bind a timespan property to a textblock,which seems to be resolved with
the help of this post
Now i want to hide StringFormat when data is null.From the thread if i use a ...
2
votes
1answer
551 views
Sizing image to text in the image with C# System.Drawing / Drawstring
I want to take a string, and a specified font, and create a graphic image that contains that text in box, where the box resizes to the text.
I got the code below working, but it sizes the box ...
2
votes
2answers
1k views
wpf - binding stringformat on label using string literal
I've binded the tooltip of a slider control to it's Value property and i'm trying to use StringFormat to make it display "Current Value {0} of 10" where the {0} is the Value property. Below is one of ...
2
votes
4answers
570 views
How to hide stringformat if data is null
How to hide a stringformat when data is not present.Consider this sample
<TextBlock Text="{Binding Amount, StringFormat=Total: {0:C}}" />
in this case if Amount is null,Then it will show just ...
2
votes
2answers
382 views
Avoiding resource (localizable string) duplication with String.Format
I'm working on a application (.NET, but not relevant) where there is large potential for resource/string duplication - most of these strings are simple like:
Volume: 33
Volume: 33 (dB)
Volume
33 dB
...
2
votes
5answers
194 views
javascript error of unterminated string
I want pass a parameter of javascript functiona which is a string. This javascript function is a hintbox on mousehover..
and the string i am using is like this:
Hemmed Finish: Every side/edge ...
2
votes
3answers
2k views
QString::number() - zero padding?
I want to "stringify" a number and keep leading zeros. Unlike this question:
http://stackoverflow.com/questions/885401/print-trailing-zeros-in-a-qstring
I also need this in hex. By code now uses ...
2
votes
1answer
2k views
What's the shorter xaml syntax for Multibinding using StringFormat with multiple bindings?
for a single binding, we use:
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0}">
<Binding Path=EmployeeName/>
</MultiBinding>
...
1
vote
1answer
51 views
How do I get simple editing on a Percent formatted field in WPF TextBox?
When you format a TextBox as currency and click to edit it, the $ and commas do not cause a problem, you can just edit and tab with no problem. When you format a field as a percentage things do not ...
1
vote
1answer
98 views
how to edit a WPF textbox which uses multibinding and string.format?
I have the following code.
This displays data in following format H:M:S. I would like to edit these values...and wanted to be notified in viewmodel.
How do I achieve that ?
Any help would be ...
1
vote
1answer
137 views
XAML TextBlock XML: StringFormat to display number
My XML data is:
<Num>12.6</Num>
I bind this to a XAML TextBlock and want to display the value as a rounded number without decimal point. So this value should be displayed as 13. ...
1
vote
1answer
126 views
Problem with StringFormat
I'm trying to use the StringFormat in XAML to populate the Header text on a TabItem. The code I am using is:
<TabControl.ItemContainerStyle>
<Style TargetType="{x:Type TabItem}" ...
1
vote
1answer
454 views
MultiBinding StringFormat of TimeSpan
I cannot for the life of me get this to work. I need to display hh:mm from a pair of timespan objects in a textblock and it is just not working. This is what I have so far:
<TextBlock>
...
1
vote
3answers
213 views
WPF Binding with StringFormat
Hey guys, could anyone explain to me why this does not render "VALUE IS DEFAULT"?
<TextBlock Text="{Binding Fail, StringFormat=VALUE IS {0}, FallbackValue=DEFAULT}" />
There's something ...
1
vote
2answers
329 views
StringFormat formatting in xaml for currency
I am using the following code Binding Path=InvoiceAmount, StringFormat={}{0:C0}snippet and its working good, as i am not interested in the fraction part. It yields the result in this manner $12. But ...
1
vote
1answer
933 views
WPF Image Tooltip
I have a tooltip on an image inside of a listbox. The tooltip is setup as follows:
<Image Grid.Column="0" Source="{Binding PingRankImage}"
Width="16" Height="16"
...
1
vote
2answers
257 views
Does StringFormat work with this.DataContext
I am binding a TextBlock with a collection in code-behind via this.DataContext = SellerList;
The output is correct but when i apply StringFormat, i see no result. Following is the code for TextBlock ...
1
vote
3answers
771 views
Why won't this Boolean string format work?
I currently have the following GridView TemplateField:
<asp:TemplateField HeaderText="Despatched">
<ItemTemplate><%# IIf(Eval("Despatched"), "Yes", "No")%></ItemTemplate>
...
1
vote
3answers
623 views
Can you StringFormat the NavigateUri property for Hyperlinks during XAML property databinding?
Is there an easy way to transform or format a string as part of WPF data binding?
Suppose I want to create a WPF Hyperlink element based on a string tag.
<Hyperlink NavigateUri="{Binding ...
1
vote
2answers
721 views
WPF Image Source binding with StringFormat
I'm new to WPF and MVVM (started this week experimenting with it) and trying to bind image resources at runtime. The items I'm trying to display contain an enumerate property that indicates the type ...
1
vote
2answers
649 views
WPF Binding and Dynamically Assigning StringFormat Property
I have a form that is generated based on several DataTemplate elements. One of the DataTemplate elements creates a TextBox out of a class that looks like this:
public class MyTextBoxClass
{
public ...
1
vote
2answers
497 views
C# Double.ToString() [closed]
Possible Duplicate:
Custom numeric format string to always display the sign
To format a double to certain precision in C# I write this:
d.ToString("#0.00");
What if I want to force a the ...
1
vote
4answers
197 views
String format or REGEX
I need an simple way to check whether a string that is sent to my function is of the form:
(x + n)(x + m)
//the +'s can be minus'
//n and m represent a double
//x represents the char 'x'
Is there ...