http://www.developer.nokia.com/Community/Wiki/Application_Bar_for_Windows_Phone
위 주소에 매우 잘 나오고, 예제도 잘 되어 있다.
그런데, 아이콘이 안 나오는 경우가 있다.
6. In the Properties window, set the property Build Action to content and Copy to Output Directory to Copy if Newer. Setting the Build Action to content is necessary for the image to show up on the application bar.
위의 글을 잘 이해하고 이행해야 한다.
pushpin contents에 icons 로
using System.Windows.Media.Imaging;
~~~~~~~~~~~~~~~~~~~~`
Uri imgUri = new Uri("icons/appbar.cancel.rest.png", UriKind.RelativeOrAbsolute);
BitmapImage imgSourceR = new BitmapImage(imgUri);
ImageBrush imgBrush = new ImageBrush() { ImageSource = imgSourceR };
pp.Background = new SolidColorBrush(Colors.Transparent);
pp.Content = new Rectangle()
{
Fill = imgBrush,
Height = 64,
Width = 64
};
배경을 Transparent로 하면, 깔끔하게 나온다.
댓글 달기