But I saw an e...">Geek Answers HandbookCan I use the "<-" sign in the Content property of a control?I tried calling Button as follows: <Button Content="<-Delete" /> But I saw an error:The symbol "- Delete" unexpectedlyHow to enable the < sign in the Content Button property?+7c # wpf xamlStepup Dec 08 '15 at 7:56source share2 answersUsing: <Button Content="<-Delete" /> Link for Use Special Characters in XAML+8un-lucky Dec 08 '15 at 7:59source shareyou can use <Button Content="<-Delete" /> or <Button Content="<-Delete" /> to complete this task.+4croxy Dec 08 '15 at 8:00source shareMore articles:Why doesn't scikit-learn Nearest Neighbor return the correct cosine similarity distances? - python-2.7Waiting for a new task (...): the task does not start? - c #Why does the new task ((Func )) (async () => {}) work when the new Task (...) does not work? - multithreadingHow many types of InputFormat exist in Hadoop? - hadoopFailed to find faces (face detection) in django project (using python-opencv project) - python-2.7How to create a new task (async () => {return new T ();}) ;? - c #Cannot convert lambda expression to type "..." because it is not a delegate type - c #How to use tags in my functional script Cucumber.js? - javascriptHaskell - By accepting different types and acting accordingly - haskellwhy is a new hash that has seven objects much slower than six hash lengths? - ruby | fooobar.comAll Articles
I tried calling Button as follows:
Button
<Button Content="<-Delete" />
But I saw an error:
The symbol "- Delete" unexpectedly
How to enable the < sign in the Content Button property?
<
Content
Using:
<Button Content="<-Delete" />
Link for Use Special Characters in XAML
you can use
or
<Button Content="<-Delete" />
to complete this task.