windows phone 7 - How create custom feedback button? -


how create custom button expression blend 4? insert image button , receive feedback

thank

my guess: create button image inside, click event triggers emailcomposetask send email feedback.

there dozens of tutorial how make button in blend. it's prety simple

  1. drag button on screen.
  2. change content of button image or create new/edit dupicate style/templeate of button. change textblock image.

that's ui need logic. job visual studio.

(you can create ui in visual studio - prefer way)

example of xaml

<button>       <button.content>         <image source="img.png" />         </button.content>     </button> 

then in code behind page create emailcomposetask.

        emailcomposetask emailcomposetask = new emailcomposetask();         emailcomposetask.to = "foo@bar.com";         emailcomposetask.subject = "windows phone 7 app - feedback";         emailcomposetask.show();  

Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -