The stringformat tag has no wiki summary.
0
votes
0answers
13 views
WPF: Editable ComboBox and StringFormat
(First of all, I simplified the sample for you to understand.)
I want a editable ComboBox that shows values in inches. The original (source) value is a value in pixels (DIPs), because this is the ...
0
votes
2answers
49 views
String format in wpf
I have a TextBox on WPF that is related to the float variable in my model
Following the TextxBox:
<TextBox Text="{Binding Position, StringFormat=f4}"/>
I want that TextBox will display a ...
2
votes
0answers
26 views
Documentation for stringFormat in jqChart
Is there some kind of documentation for the way stringFormat works in jqChart? I haven't found any on their website, not even a hint.
Thanks in advance.
Edit:
Just found the docs myself: ...
0
votes
2answers
28 views
Customizing Java Formater to retain machine Precission
The default java String.format by default rounds floating point values to 6 digits, this can be overridden by using format specifiers in the format string.
How would one go about creating an instance ...
0
votes
0answers
59 views
draw listview columns and alignment the columns seperatly
i am drawing my listview before i print it and i can align columns to the right with StringAlignment.Far but it draws all column to the right, can i draw my first description column to the left and ...
1
vote
2answers
68 views
WPF Binding.StringFormat: C vs. '{}{0:C}'
I am trying to globalize a simple WPF app. In several questions and/or answers on SO I see one of the following two settings on the binding:
StringFormat=C
StringFormat='{}{0:C}'
What is the ...
2
votes
1answer
220 views
Changing the default thousand and decimal separator in a binding
Let's say I have a number 1234567.89. The number is displayed in a WPF TextBlock. I am trying to apply StringFormat attribute to the Text property so that the number would be displayed like:
...
0
votes
1answer
157 views
WPF Binding StringFormat
I'm trying to format a textblock bound to an integer. What I want is to show (+25) for positive number and (-25) for a negative one.
So far i have been able to do it separately with the following ...
1
vote
1answer
83 views
Input string was not in a correct format in replace mehod
I want to edit a text and there is some dynamic fields in it, so i used replace method to have these fields in special place in context. my problem is when i want to replace these fields in context it ...
0
votes
1answer
390 views
binding string format from code-behind?
Please, can some body tell me how to get my double value formatted like "0.0" from code-behind, like this:
Binding b = new Binding(DoubleValue);
b.StringFormat = "????";
In xaml it works just like ...
0
votes
1answer
197 views
DatePicker SelectedDate string format
I have derived the DatePicker class to support an additional DateMode property which will allow the user to use the control only as per the DateMode (Day, Month, Year). So if the DateMode is set to ...
1
vote
1answer
54 views
Binding a unit label in WPF textbox
I'm binding a pressure to a textbox. The pressure could be in PSI, KPA, BARS, etc. I would like to display the unit inside the textbox next to the value. There doesn't seem to be a way to bind the ...
0
votes
0answers
37 views
How to format strings in LTR (U+200e) or RTL (U+200f) in java ? Any example
Hi i want to format strings in LTR (U+200e) or RTL (U+200f) in java . when i use this
String status = String.format(locale, "\u200e", mStatus.getText());
when i print this i am getting nothing ...
0
votes
1answer
52 views
Simple overloading error?
I'm sorry if the title simple overloading error? isn't the right title. I'm not sure of the method that I've tried below...
Anyway, I want my text field to display text that I am setting here which ...
1
vote
1answer
237 views
WPF StringFormat and Localization in XAML
OS: WP8
I'm trying to format a string which is the result of a converter taking a binding. All of it works except for the localization of the string format data, which I haven't the foggiest idea how ...
2
votes
2answers
65 views
Label % suffix in binding
i already searched in the internet but i guess im just too stupid.
found something like this:
How to set WPF string format as percent wihout multiplying by 100?
i just want to have a '%' sign suffix ...
2
votes
2answers
126 views
How to add conditions in a Multibinding string block? (WPF)
I am trying to format the title of my Application but it seems some basic WPF details escape me. Here is my code:
<Window.Title>
<MultiBinding StringFormat="{}{0} - {1}">
...
0
votes
5answers
95 views
Insert a dot before last character
is it possible to get a string like "45.6" from an int a = 456; using string.Format?
1
vote
3answers
253 views
Column string format
I found how to use StringFormat from XAML but I need to add columns programmatically and I can't find a solution for it. The code I am using doesn't work:
foreach (Fields field in fields)
{
...
1
vote
2answers
50 views
What's the XAML equivalent of .toFixed(2)?
I want to display a number in a Label, it should be formatted with 2 decimal places (always).
Example:
<Label Content="{Binding MyMoneyAmount}" />
If MyMoneyAmount = 100, then it should ...
0
votes
1answer
102 views
Customized Button Template with Binding StringFormat Issue
When I am working on a button template I just encountered a binding StringFormat issue. Here it is.
-- I setup a button with a given ToolTip as a string. I like to use it to specify the image name ...
0
votes
1answer
109 views
How to set a StringFormat for the length of a string
So i know it's possible to set the StringFormat in Binding for a date and a numeric value, but what i would like to achieve is a StringFormat where the following string:
"This is the body of an long ...
0
votes
1answer
430 views
XAML databinding and dynamic string format
just having some trouble formatting the displayed string when databinding.
Suppose I have a property Size:
/// <summary>
/// Size information
/// </summary>
private long ...
4
votes
1answer
140 views
How do I get a vertical nowrap string using system.drawing.stringformat
I'm working at bit with graphics and I need to get the labeling for the axis on my graph to be a single vertical line of text when my chart is rendered. I don't care if some text is cut off, but I ...
3
votes
2answers
188 views
wpf string format integer 1234 to 12:34 only in XAML
I have 1234 value and I have to show it as 0012:34 and when user clicks on that text box to edit the value, it should display only 1234 and when tabs out it should go back to 0012:34. If I use a ...
0
votes
1answer
257 views
In Python, what do %25s, %28s, %15s, %3s etc mean?
I've heard of string formatting, but what the heck are these %25s, %28s, %15s, %3s in this snippet:
return "Scan Name: %25s\nTarget(s): %25s\nPolicy: %28s\n\nRisk Summary\n%s\n%15s %3s\n%15s ...
0
votes
1answer
325 views
WPF Databinding StringFormat does not support hex format?
I am using WPF databinding. I can format the number if I specify StringFormat={}{0:C}. However, if I use StringFormat={}{0:X2}, it will give give the following exception:
System.Windows.Data Error: 6 ...
1
vote
2answers
178 views
How to format a number with comma and specified precision digits in Python
The question is for Python 2.6, that is what we have in production.
I have this requirement for formatting a number (like 1234567.0987 or 1234567.0) with comma, and specified number of digits after ...
0
votes
0answers
174 views
Silverlight: DateTime format in TextBlocks
I'd like to use a custom DateTimeFormat across my entire Silverlight app, so I plugged in the following code in my App.xaml.cs.
var ci = (CultureInfo)Thread.CurrentThread.CurrentCulture.Clone();
...
-1
votes
3answers
142 views
string.Format return empty string
Is there a way to get string.Format to always return an empty string?
string.Format("", DateTime.Now);
3rd party component lets us pass no more than a format string. The empty string idea ...
0
votes
1answer
167 views
wp7 - stringformat change imperial and metric for textblock stringformat
Hi everyone i have done something not so good i should say. Now when my application is in the final stage and near complete i need to have a settings page where i can set if the units of measure ...
2
votes
0answers
421 views
Using StringFormat in xaml binding with textblock [closed]
I have the following xaml:
<Setter Property="Text" Value="{Binding Name, StringFormat='"{0}"'}" />
<Setter Property="Foreground" Value="Black" />
...
<Setter ...
0
votes
1answer
255 views
Stringformat concatenates databinding and resource's value
I want to concatenate in my window title a property from my viewmodel and a value that cames from a resources file.
This is what I have working without the string from resources:
Title="Binding ...
9
votes
2answers
4k views
How can I format a decimal bound to TextBox without angering my users?
I'm trying to display a formatted decimal in a TextBox using data binding in WPF.
Goals
Goal 1: When setting a decimal property in code, display 2 decimal places in the TextBox.
Goal 2: When a user ...
0
votes
3answers
169 views
Incorrect input string format in Calculator
I am having a very annoying issue that I have been looking everywhere to find but none of them make sense to me. I have only recently started C# so if its a silly mistake, well sorry.
Ive built a ...
0
votes
2answers
722 views
Format date with StringFormat in TextBlock in WPF
I have stored date in database without slashing for some reason . it means that I have a date field like 20110602.
As i want to retrieve this date and show it in a textblock I need a formatting to ...
2
votes
2answers
2k views
Custom DateTime stringformat in WPF
I can't get my custom DateTime string format to work in my binding. I want the format to be "mmmm, yyyy" (e.g. "June, 2012").
The following does not work. I get a short date format (m/d/yyyy).
...
0
votes
1answer
219 views
Binding StringFormat giving incorrect result
For some reason using Content="{Binding Time, StringFormat=t} is still giving me a long date. The backing field is a DateTime property initialised with DateTime.Now but no matter what string format I ...
0
votes
1answer
198 views
String Currency Format not using correct Local
I am currently working on a C# project and I am formatting the data within a cell within a WPF datagrid to be shown as a currency.
In the datagrid I am using the following code:
...
0
votes
3answers
110 views
generate data from formatted string
I have this code to Format an string
string s = "the first number is: {0} and the last is: {1} ";
int first = 2, last = 5;
string f = String.Format(s, first, last);
I want to extract first and last ...
0
votes
1answer
729 views
Using StringFormat with XAML Binding to inject folder into image path
I'm trying to allow for multiple icon sizes depending on certain conditions. To do this, I have a bunch folders: 'Images\Icons\...\*.png' where the ... is the size (16, 32, 64, 128, 256, etc.) Each ...
0
votes
1answer
113 views
MultiBinding StringFormat Logic: Don't Print Delimiter
Given this XAML ...
<TextBlock Name="First">Fred</TextBlock>
<TextBlock Name="Last">Flintstone</TextBlock>
<TextBlock >
<TextBlock.Text>
...
0
votes
1answer
1k views
TextBox with CurrencyFormat and PropertyChanged trigger doesn't accept text right
I have a TextBox in a WPF window bound to a dependency property of the window of type double (see below). Whenever the user types in the TextBox when
The TextBox is empty, or
All of the text is ...
1
vote
3answers
521 views
Format binding value with c#
In my application I am binding several text boxes to properties. So in c# I have:
public class MyUserControl : UserControl, INotifyPropertyChanged
{
decimal _Price;
public decimal Price
{
...
0
votes
1answer
383 views
Format number with + and - sign
I have some WPF textblocks in a stackpanel that I want to databind and format.
E.g. the following formats a date 24h style without the seconds part:
<TextBlock Text="{Binding MyCustomObject, ...
1
vote
2answers
2k views
Display Currency in two decimals, but keeping all available decimals
Quick(I hope) question.
I've got this DataGrid, containing a few currency column's. What I can't seem to find is how to display the currency in 2 decimals. But maintaining a possible 3 or 4 decimal ...
4
votes
2answers
2k views
StringFormat on Combobox Displaymemberpath
I am trying to use StringFormat on DisplayMemberPath property of a ComboBox (WPF). But i don't know even if this is possible. can someone help me with some ideas.
I am trying to do something like ...
0
votes
2answers
1k views
Binding expression with StringFormat and uppercase Converter?
I have a TextBlock whose text is bound to live ticker (via System.Date.Now) and that binding contains a ValueConverter that is supposed to convert the string to uppercase. However, the string does not ...
3
votes
1answer
1k views
How to use StringFormat to round a bound double value
I cannot get my DataBinding to cut off the decimal digits of my sliders double value and add a % sign. I want that my view only displays "89%" even if the sliders value is 89.1234. Is it possible to ...
1
vote
2answers
181 views
Word-wrapping in a rectangle, while allowing words to be truncated
I'm making a scheduling application which looks similar to Google Calendar, iCalendar, Outlook's calendar, and similar... As you may have seen in such apps, scheduled events are represented in ...



