How can I add 20% to a textbox value in C# WPF











up vote
0
down vote

favorite
1












In my WPF application I want a textbox that will add on a 20% to the users input value.



For example if users input is £85.00 then it should show £102.00.



How can I achieve this? Thanks.



    <TextBox LostFocus="JobPrice_LostFocus" materialDesign:HintAssist.Hint="Price" Width="250" Name="JobPrice" PreviewTextInput="JobPrice_PreviewTextInput" />









share|improve this question


















  • 5




    Did you try to solve your problem? Any effort to show us?
    – Steve
    Nov 22 at 13:06










  • Well, it's on you to do any calculations you want! ;-)
    – Nicolas
    Nov 22 at 13:07










  • (1) What have you tried? What is not working? (2) It should be written to the same textbox? (3) What is the trigger for recalculating the value? You can't do it on keypress since you'd change the value the user is currently typing and thus will end up with an unusable control.
    – Flater
    Nov 22 at 13:07










  • Sorry I am new to using c# and coding in general and thought I would jump in the deep end and try c#, a friend told me to use stackoverflow and that it is good for problems and help. I have searched google to try work out my problem. @Flater If possible it could maybe work when user clicks off of textbox ?
    – Tom Marlin
    Nov 22 at 13:20










  • User clicks off of textbox then the percentage gets added
    – Tom Marlin
    Nov 22 at 13:21















up vote
0
down vote

favorite
1












In my WPF application I want a textbox that will add on a 20% to the users input value.



For example if users input is £85.00 then it should show £102.00.



How can I achieve this? Thanks.



    <TextBox LostFocus="JobPrice_LostFocus" materialDesign:HintAssist.Hint="Price" Width="250" Name="JobPrice" PreviewTextInput="JobPrice_PreviewTextInput" />









share|improve this question


















  • 5




    Did you try to solve your problem? Any effort to show us?
    – Steve
    Nov 22 at 13:06










  • Well, it's on you to do any calculations you want! ;-)
    – Nicolas
    Nov 22 at 13:07










  • (1) What have you tried? What is not working? (2) It should be written to the same textbox? (3) What is the trigger for recalculating the value? You can't do it on keypress since you'd change the value the user is currently typing and thus will end up with an unusable control.
    – Flater
    Nov 22 at 13:07










  • Sorry I am new to using c# and coding in general and thought I would jump in the deep end and try c#, a friend told me to use stackoverflow and that it is good for problems and help. I have searched google to try work out my problem. @Flater If possible it could maybe work when user clicks off of textbox ?
    – Tom Marlin
    Nov 22 at 13:20










  • User clicks off of textbox then the percentage gets added
    – Tom Marlin
    Nov 22 at 13:21













up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





In my WPF application I want a textbox that will add on a 20% to the users input value.



For example if users input is £85.00 then it should show £102.00.



How can I achieve this? Thanks.



    <TextBox LostFocus="JobPrice_LostFocus" materialDesign:HintAssist.Hint="Price" Width="250" Name="JobPrice" PreviewTextInput="JobPrice_PreviewTextInput" />









share|improve this question













In my WPF application I want a textbox that will add on a 20% to the users input value.



For example if users input is £85.00 then it should show £102.00.



How can I achieve this? Thanks.



    <TextBox LostFocus="JobPrice_LostFocus" materialDesign:HintAssist.Hint="Price" Width="250" Name="JobPrice" PreviewTextInput="JobPrice_PreviewTextInput" />






c# wpf






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 at 13:04









Tom Marlin

131




131








  • 5




    Did you try to solve your problem? Any effort to show us?
    – Steve
    Nov 22 at 13:06










  • Well, it's on you to do any calculations you want! ;-)
    – Nicolas
    Nov 22 at 13:07










  • (1) What have you tried? What is not working? (2) It should be written to the same textbox? (3) What is the trigger for recalculating the value? You can't do it on keypress since you'd change the value the user is currently typing and thus will end up with an unusable control.
    – Flater
    Nov 22 at 13:07










  • Sorry I am new to using c# and coding in general and thought I would jump in the deep end and try c#, a friend told me to use stackoverflow and that it is good for problems and help. I have searched google to try work out my problem. @Flater If possible it could maybe work when user clicks off of textbox ?
    – Tom Marlin
    Nov 22 at 13:20










  • User clicks off of textbox then the percentage gets added
    – Tom Marlin
    Nov 22 at 13:21














  • 5




    Did you try to solve your problem? Any effort to show us?
    – Steve
    Nov 22 at 13:06










  • Well, it's on you to do any calculations you want! ;-)
    – Nicolas
    Nov 22 at 13:07










  • (1) What have you tried? What is not working? (2) It should be written to the same textbox? (3) What is the trigger for recalculating the value? You can't do it on keypress since you'd change the value the user is currently typing and thus will end up with an unusable control.
    – Flater
    Nov 22 at 13:07










  • Sorry I am new to using c# and coding in general and thought I would jump in the deep end and try c#, a friend told me to use stackoverflow and that it is good for problems and help. I have searched google to try work out my problem. @Flater If possible it could maybe work when user clicks off of textbox ?
    – Tom Marlin
    Nov 22 at 13:20










  • User clicks off of textbox then the percentage gets added
    – Tom Marlin
    Nov 22 at 13:21








5




5




Did you try to solve your problem? Any effort to show us?
– Steve
Nov 22 at 13:06




Did you try to solve your problem? Any effort to show us?
– Steve
Nov 22 at 13:06












Well, it's on you to do any calculations you want! ;-)
– Nicolas
Nov 22 at 13:07




Well, it's on you to do any calculations you want! ;-)
– Nicolas
Nov 22 at 13:07












(1) What have you tried? What is not working? (2) It should be written to the same textbox? (3) What is the trigger for recalculating the value? You can't do it on keypress since you'd change the value the user is currently typing and thus will end up with an unusable control.
– Flater
Nov 22 at 13:07




(1) What have you tried? What is not working? (2) It should be written to the same textbox? (3) What is the trigger for recalculating the value? You can't do it on keypress since you'd change the value the user is currently typing and thus will end up with an unusable control.
– Flater
Nov 22 at 13:07












Sorry I am new to using c# and coding in general and thought I would jump in the deep end and try c#, a friend told me to use stackoverflow and that it is good for problems and help. I have searched google to try work out my problem. @Flater If possible it could maybe work when user clicks off of textbox ?
– Tom Marlin
Nov 22 at 13:20




Sorry I am new to using c# and coding in general and thought I would jump in the deep end and try c#, a friend told me to use stackoverflow and that it is good for problems and help. I have searched google to try work out my problem. @Flater If possible it could maybe work when user clicks off of textbox ?
– Tom Marlin
Nov 22 at 13:20












User clicks off of textbox then the percentage gets added
– Tom Marlin
Nov 22 at 13:21




User clicks off of textbox then the percentage gets added
– Tom Marlin
Nov 22 at 13:21












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










You can try this c# code:



private void TextBox1_LostFocus(object sender, RoutedEventArgs e)
{
decimal CalculatedPrice = decimal.Parse(TextBox1.Text) * 20 / 100 + decimal.Parse(TextBox1.Text);
TextBox1.Text = CalculatedPrice.ToString();
}





share|improve this answer





















  • Good answer. Could you make it more readable though? Like, only parse the text once? Error checking if you think it's needed? It may also be a part of the requirement that the display string is in a "money" format and that may need some explanation for the OP.
    – Dan Rayson
    Nov 22 at 17:20






  • 1




    Dear Dan Rayson you are correct, I could add a sample how to limit the textbox to numbers only but looking at his XAML he added a PreviewTextInput event which he could use for text validation, since i'm not sure what codes he has so I try to answer only on the questions he asked.
    – Dark Templar
    Nov 22 at 18:34










  • Thank you @DarkTemplar was exactly what I was looking for
    – Tom Marlin
    Nov 23 at 6:38











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431677%2fhow-can-i-add-20-to-a-textbox-value-in-c-sharp-wpf%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










You can try this c# code:



private void TextBox1_LostFocus(object sender, RoutedEventArgs e)
{
decimal CalculatedPrice = decimal.Parse(TextBox1.Text) * 20 / 100 + decimal.Parse(TextBox1.Text);
TextBox1.Text = CalculatedPrice.ToString();
}





share|improve this answer





















  • Good answer. Could you make it more readable though? Like, only parse the text once? Error checking if you think it's needed? It may also be a part of the requirement that the display string is in a "money" format and that may need some explanation for the OP.
    – Dan Rayson
    Nov 22 at 17:20






  • 1




    Dear Dan Rayson you are correct, I could add a sample how to limit the textbox to numbers only but looking at his XAML he added a PreviewTextInput event which he could use for text validation, since i'm not sure what codes he has so I try to answer only on the questions he asked.
    – Dark Templar
    Nov 22 at 18:34










  • Thank you @DarkTemplar was exactly what I was looking for
    – Tom Marlin
    Nov 23 at 6:38















up vote
1
down vote



accepted










You can try this c# code:



private void TextBox1_LostFocus(object sender, RoutedEventArgs e)
{
decimal CalculatedPrice = decimal.Parse(TextBox1.Text) * 20 / 100 + decimal.Parse(TextBox1.Text);
TextBox1.Text = CalculatedPrice.ToString();
}





share|improve this answer





















  • Good answer. Could you make it more readable though? Like, only parse the text once? Error checking if you think it's needed? It may also be a part of the requirement that the display string is in a "money" format and that may need some explanation for the OP.
    – Dan Rayson
    Nov 22 at 17:20






  • 1




    Dear Dan Rayson you are correct, I could add a sample how to limit the textbox to numbers only but looking at his XAML he added a PreviewTextInput event which he could use for text validation, since i'm not sure what codes he has so I try to answer only on the questions he asked.
    – Dark Templar
    Nov 22 at 18:34










  • Thank you @DarkTemplar was exactly what I was looking for
    – Tom Marlin
    Nov 23 at 6:38













up vote
1
down vote



accepted







up vote
1
down vote



accepted






You can try this c# code:



private void TextBox1_LostFocus(object sender, RoutedEventArgs e)
{
decimal CalculatedPrice = decimal.Parse(TextBox1.Text) * 20 / 100 + decimal.Parse(TextBox1.Text);
TextBox1.Text = CalculatedPrice.ToString();
}





share|improve this answer












You can try this c# code:



private void TextBox1_LostFocus(object sender, RoutedEventArgs e)
{
decimal CalculatedPrice = decimal.Parse(TextBox1.Text) * 20 / 100 + decimal.Parse(TextBox1.Text);
TextBox1.Text = CalculatedPrice.ToString();
}






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 22 at 16:48









Dark Templar

73259




73259












  • Good answer. Could you make it more readable though? Like, only parse the text once? Error checking if you think it's needed? It may also be a part of the requirement that the display string is in a "money" format and that may need some explanation for the OP.
    – Dan Rayson
    Nov 22 at 17:20






  • 1




    Dear Dan Rayson you are correct, I could add a sample how to limit the textbox to numbers only but looking at his XAML he added a PreviewTextInput event which he could use for text validation, since i'm not sure what codes he has so I try to answer only on the questions he asked.
    – Dark Templar
    Nov 22 at 18:34










  • Thank you @DarkTemplar was exactly what I was looking for
    – Tom Marlin
    Nov 23 at 6:38


















  • Good answer. Could you make it more readable though? Like, only parse the text once? Error checking if you think it's needed? It may also be a part of the requirement that the display string is in a "money" format and that may need some explanation for the OP.
    – Dan Rayson
    Nov 22 at 17:20






  • 1




    Dear Dan Rayson you are correct, I could add a sample how to limit the textbox to numbers only but looking at his XAML he added a PreviewTextInput event which he could use for text validation, since i'm not sure what codes he has so I try to answer only on the questions he asked.
    – Dark Templar
    Nov 22 at 18:34










  • Thank you @DarkTemplar was exactly what I was looking for
    – Tom Marlin
    Nov 23 at 6:38
















Good answer. Could you make it more readable though? Like, only parse the text once? Error checking if you think it's needed? It may also be a part of the requirement that the display string is in a "money" format and that may need some explanation for the OP.
– Dan Rayson
Nov 22 at 17:20




Good answer. Could you make it more readable though? Like, only parse the text once? Error checking if you think it's needed? It may also be a part of the requirement that the display string is in a "money" format and that may need some explanation for the OP.
– Dan Rayson
Nov 22 at 17:20




1




1




Dear Dan Rayson you are correct, I could add a sample how to limit the textbox to numbers only but looking at his XAML he added a PreviewTextInput event which he could use for text validation, since i'm not sure what codes he has so I try to answer only on the questions he asked.
– Dark Templar
Nov 22 at 18:34




Dear Dan Rayson you are correct, I could add a sample how to limit the textbox to numbers only but looking at his XAML he added a PreviewTextInput event which he could use for text validation, since i'm not sure what codes he has so I try to answer only on the questions he asked.
– Dark Templar
Nov 22 at 18:34












Thank you @DarkTemplar was exactly what I was looking for
– Tom Marlin
Nov 23 at 6:38




Thank you @DarkTemplar was exactly what I was looking for
– Tom Marlin
Nov 23 at 6:38


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431677%2fhow-can-i-add-20-to-a-textbox-value-in-c-sharp-wpf%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

What visual should I use to simply compare current year value vs last year in Power BI desktop

Alexandru Averescu

Trompette piccolo