The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
71 views

can I put a toggleswitch in application bar in windows phone 8?

like this picture below inside the application bar,we can see two toggle switch here If possible,How to implement this??? ANY ADVICE WILL BE GREAT!
1
vote
1answer
37 views

How can remove the circle of ApplicationBarIconButton in windows phone?

I create the Application Bar with 4 icon Buttons and 3 normal menus. It's working fine. But i don't want, the circle around the icon button. How can i remove that. And another one question is how to ...
0
votes
1answer
61 views

Global appBar, add other buttons to this appbar for a specific page

I add an appbar with 3 buttons in App.xaml.cs to put it on each page but I have a page where I would like to add another button in addition. What I do, it's I get the appbar with my 3 defaults ...
-2
votes
1answer
66 views

How to create two type of application bar in windows phone? [closed]

I already create the application bar in my application. Now i want create new application bar with exist of old one is present. Is it possible or not? Please help me. Thanks in advance.
0
votes
0answers
125 views

When using Data binding, the PhoneApplicationPage.ApplicationBar does not triggers a update event

On this zip file I put together a project that run, but if you don’t click on the following textbox it never update the data source class. [1] ...
0
votes
1answer
148 views

Dynamically add Applicationbar in Application.Resources

Could anybody tell me how to do the following dynamically. I have refered many sites. but nothing helped me. <phone:PhoneApplicationPage.Resources> <shell:ApplicationBar ...
0
votes
1answer
86 views

Create Application bar when request from WebView in Windows phone 8

I want to create application with webbrowser. When the request like "createappbar" through script, then i have to create the application bar from JavaInterface methods. is there any tutorial ...
2
votes
1answer
110 views

Create Application bar dynamically

I want to create Application Bar dynamically in Windows Phone 8. I have used the following code to create application bar in appbar.cs file class AppBar { public AppBar() { ...
2
votes
1answer
69 views

Add/remove event suscriber in application bar item?

Why would I do that, anyway? Here it is: My application bar item respond to click like this: <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Click="Customization" ...
0
votes
0answers
33 views

Is there a way to make a Page.TopAppBar in Window phone 8?

It is common to see a top Appbar in apps. I've read the reference that there is a TopAppBar properties in Page Class from windows 8. But there is only ApplicationBar properties in PhoneApplicationPage ...
0
votes
1answer
40 views

Add Control like appBar

I need your help please. I need to add in my project, in the end of my page, a Control( that can be in stackpanel or not), something like application bar, meaning, if I have a listbox, on all the ...
0
votes
0answers
122 views

How can I programmatically open the ApplicationBar in Windows Phone

In Windows Phone, how can I programmatically open the ApplicationBar, to let users read the button labels at app start time without the need to tap on the corner dots ("...")? Thanks in advance!
0
votes
2answers
208 views

Windows Phone - Create AppBarButton Style for Button

I need to display a Button with the same style as an AppBarButton. I use the same icon as in the AppBar, for example a floppy disk, but I need to create the circle around the icon dynamically. How ...
0
votes
0answers
165 views

Disable the tap-and-hold application bar that appears in WP8 phone:WebBrowser control

The phone:WebBrowser control in Windows Phone 8 has a behavior where if you tap-and-hold a text block in the control, a selection mechanism will be enabled and an ApplicationBar with copy-paste ...
0
votes
1answer
179 views

Add application bar dynamically from a list

I have to add application bars at run time i have tried some codes and that does not work for me can any one suggest me a solution ? Here is my code public void ...
0
votes
1answer
136 views

Got an exception when adding application bar programatically

In my application i want to add application bar at run time.I have a list containing the application bar names and the image uri .I have to add the application bar according to the list.But i got an ...
0
votes
1answer
96 views

How to change ApplicationBar fontfamily?

I am developing windows phone 7 application. I need to change applicationBar font family. if anyone know the ans post here. mycode: <shell:ApplicationBar BackgroundColor="#5a4d26" ...
0
votes
1answer
89 views

fire a popup when ApplicationBarMenuItem clicked

I need to fire a popup when ApplicationBarMenuItem clicked. but nothing happen when I click MenuItem. here is my code; <shell:ApplicationBar.MenuItems> <shell:ApplicationBarMenuItem ...
0
votes
1answer
479 views

Missing App Bar Template in Visual Studio 2012 Express for Windows Phone 8

according to this MSDN article, there should be an Application Bar template in every generated Xaml File for Windows Phone Projects: Locate the sample Application Bar element, which is added to ...
1
vote
1answer
163 views

radiobuttons on windows phone applicationbar?

Hey guys I have this page : PS: this is temp data, so it don't look so good ;P Now if I click on that filter button, I want a popup window or radio buttons to show in the application bar, is that ...
2
votes
4answers
2k views

WinPhone 8 AppBar icon size

The guide for Windows Phone 8 app bars states that AppBar button icons should be 48x48px. It also says that a bunch of sample icons can be found in C:\Program Files (x86)\Microsoft SDKs\Windows ...
2
votes
3answers
2k views

Windows phone disable application bar button

So, what is my problem ? I have a popup, and when i open it, i want to disable current page in my windows phone applications. so i make this this.IsEnabled = false; But my ApplicationBar is still ...
0
votes
2answers
108 views

Applcation bar buttons with text in WP

I have application bar with some buttons and menu items when user clicks '...'. Anyway, I realized that meaning of some icons can be hard to understand at first sight. Is it any way to display icons ...
0
votes
1answer
202 views

Application bar | Windows phone 7

Is it possible to show application bar in windows phone 7 or higher at the top of application rather than at the bottom and also customizing the application bar. i-e. Icon1 Icon2 Some text Icon3 ...
0
votes
1answer
96 views

Add input box (e.g. AutoCompleteBox) to Application Bar

How can I add controls like the AutoCompleteBox from Silverlight Toolkit to the Application Bar? I would like to create an Application Bar similar to the one in Internet Explorer app.
1
vote
1answer
639 views

Setting colour of application bar in C#

I define my ApplicationBar in code like that: private void BuildApplicationBar() { // Set the page's ApplicationBar to a new instance of ApplicationBar. ApplicationBar ...
0
votes
0answers
147 views

User control page with application bar windows phone

I am creating an app that has multiple pages, and one of them is a user control page, which works like a pop up of a paranoma page. How can I add an application bar on that user control page??? I ...
0
votes
1answer
235 views

Built-in rotation animation of applicationbar in Windows Phone

There is a image control in my page, which support the landscape and portrait layout. I want implement an animation that rotate the image when the oritentaion changed. Which just like the built-in ...
0
votes
1answer
292 views

WP7: Understanding dark / light icons and how to change dynamically depending on thems (via mvvmlight)?

from what i understand is that there is 2 themes in wp7, light and dark. I notice the application bar has generic images, they change to light or dark automatically. But i placed a image from the SDK ...
0
votes
1answer
204 views

Proper way of building application bar in WP7

I'am doing localized application in WP7 so I make my app bar in code. The problem appears when I have some form (registration, login etc.). In Blend everything looks all right, but when I emulate it ...
0
votes
2answers
778 views

How to add menu item to Application Bar to needed index?

I am adding menu item to Application bar using this code ApplicationBar.MenuItems.Insert(0, refreshMenu); I have 2 other items added from XAML. But added menu item is adding to the end of list ...
1
vote
1answer
1k views

Failed to assign to property when adding new ApplicationBarMenuItem icon

I've added a new ApplicationBarMenu button with icon to a page in my wp7 project. when trying to run the page i get : Failed to assign to property ...
7
votes
3answers
7k views

Windows 8 bottom app bar

I've been trying to get an App bar implemented in a WinRT metro app (C# / XAML), but don't know where to begin. I've tried using the Tag and I get a Type not found error. There's no help online, ...
3
votes
1answer
191 views

Application bar icons name

How could I make the application bar setting or any other changes so that the names below the application bar icon are displayed by default when the page is loaded without any user interaction. Like ...
0
votes
0answers
429 views

How do I reference a Windows Phone ApplicationBar from another XAML page?

I am having problems trying to reference an ApplicationBar defined in a xaml page (ViewFilesPage.xaml) in a function inside the FileTypes.cs class, all from the same project. Code for the ...
0
votes
1answer
221 views

How can I long press ApplicationBarIconButton in Windows Phone 7?

I want to long press ApplicationBarIconButton in wp7, and I need to know the start event and end event during the pressing process, how I do it? thanks!
0
votes
1answer
335 views

ApplicationBar WP7

I am wondering why when I load my windows phone project, the application bar is appearing on my first screen wich is just a loading background.. How can I make it appear at the really end of the ...
0
votes
2answers
782 views

How do I link/navigate a application bar icon to a new WP page?

Hello Stack Overflow community, I'm in the process of learning WP7 development, I'm struggling with one thing. How can I link an application bar icon to a new WP7 page in the same solution. I know ...
0
votes
1answer
461 views

Windows Phone Application Bar TextBox

I was wondering, if it is somehow possible to add a TextBox in the Application Bar area (the same way the Internet Explorer does), but I didn't find any information source about this. Have you any ...
1
vote
2answers
684 views

How to apply style to application bar globally?

I checked the Application bar but no style attribute is shown. I have about 10 pages that use an app bar so it would be ideal to set a style in the Application.Resources. Is it possible to apply a ...
6
votes
1answer
770 views

How can you prevent the ApplicationBar flickering on the WP7 white theme?

I have a Windows Phone 7.1 Mango application where I have mostly successfully overridden the built in theme colors. However, if the user has the white theme selected and the page has a dark ...
2
votes
1answer
2k views

How correct set ApplicationBarIconButton IconUri?

I specially download wp7 standart icons for AppBar, I set image build action to cotent, and copy to output copy always. But whatever I do Icon doesn't changed. What must I do? The problem is ...
2
votes
1answer
1k views

Windows Phone ApplicationBar BackgroundColor property style XamlParseException

I had a lot of pages in my application and I had decided to make a global ApplicationBar style in App.Resources: <Style TargetType="shell:ApplicationBar"> <Setter ...
0
votes
2answers
316 views

ApplicationBar Icons with text

Is there a way to show text along with the icons permanently rather than when a user clicks the "..."? Or should I instead just use standard buttons instead of the application bar?
0
votes
1answer
443 views

Get Application Bar from Parent - Windows Phone

I'm using MVVM architecture in a WP7 phone app. My current view is a user control, which exists inside of a parent page (standard page -- not stand-alone user control). I have passed the main page as ...
3
votes
1answer
645 views

Windows Phone 7 - Possible to Put Textbox in Application Bar?

I want to create an application bar like IE has in Windows Phone 7.1 ... it has a textbox in it instead of buttons, and it still works as the application bar with menu items under it. Is this ...
0
votes
2answers
675 views

Expand application bar in Windows Phone 7 app from code

I need to know if there is a way to expand the application bar in Windows Phone app from code. Here is a demo of the application bar states:
4
votes
3answers
445 views

WP7: Where do I get calendar, phone book and tabs Application Bar icons?

I found the Application Bar icons in C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v7.0\Icons, but this folder does not contain the following standard icons: button that shows the month view ...
0
votes
3answers
1k views

WP7 - Text Button on the Application Bar

On Windows Phone 7, go to Settings, email & accounts, add an account, the Windows Live (or any other). Note at the bottom there is the gray panel with a rectangular [sign in] button. Click in the ...
0
votes
5answers
2k views

WP7 Panorama control sliding lagging when hiding Application Bar

I have a Windows Phone app with panorama control. Panorama currently has two pages. One page should have a visible application bar with buttons, and another one should not. I use the panorama's ...

1 2