How to put About us and fedback dialog in wp8 application - windows-phone-8

How to put About us and fedback dialog in wp8 application. I want the user to click on an icon and see the about us descrption and able to give feedback also.

For review =>
MarketplaceReviewTask marketplaceReviewTask = new MarketplaceReviewTask();
marketplaceReviewTask.Show();
For the about page, create basic page and put what do you want in.

Related

Save Button not showing up when i try to add my custom app in Micrsoft TEAMS channel as a new TAB

i want to add my custom app to microsoft team channel as a new tab, when i click on plus sign to add a new tab window opens with several app, i can see my app also there, but after wards when i click on it new window opens but on there the save option is grayed out, so i am not able to add, can any one please suggest anything here.
Adding a Teams App as Custom app
Save Button has been diabled.
i need my custom app to be added as teams channel tab.
Thanks In advance...
Your page should have a script section like this
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
<script src="https://statics.teams.cdn.office.net/sdk/v1.6.0/js/MicrosoftTeams.min.js"></script>
<script>
microsoftTeams.initialize();
microsoftTeams.settings.setValidityState(true);
</script>

Unregistered user login for wordpress

Is there a way where we can login as a subscriber/customer in a wordpress website? I have developed a website for a client of mine. It's a club & hotel management website & they have 6000 members registered. We have login of all 6000 members in an SQL database & I want to use that SQL database for user login(besides usage of mysql).
Let me know if there's a possibility to achieve this.
Thanks.
Here are the steps to provide a customized login experience for your subscribers. It may be a long process, but it would work easily:
First thing you need to do is install and activate the WPForms plugin.
Upon activation, you need to visit WPForms » Settings page to enter your license key. You can get this license key from your account on WPForms website.
After verification, you need to head over to WPForms » Addons page.
Click on the Install Addon button.
Visit WPForms » Add New page. This will launch WPForms’ form builder.
You need to enter a form name and then from ‘Select a Template’ section click on ‘User Registration Form’ template.
Add new fields you want to add from the left panel as well as customize the order of existing fields by using a simple drag and drop interface.
Once you are done adding the fields, click on the ‘Settings’ menu on the left and then select the ‘User Registration’ tab.
Click on the save button at the top right corner of the screen to save your form settings.
Simply create a new WordPress page or edit an existing page that you would like to use as registration page.
On the page edit screen, you will notice the ‘Add Form’ button. Clicking on it will bring up a popup where you can select the user registration form you just created.
Click on the ‘Add Form button’ and you will notice a WPForms shortcode will appear in the post editor.
You can now save or publish your page. Visit the page in a new browser tab to see your custom user registration page in action.
Visit WPForms » Add New page. This will launch the Form Builder interface of WPForms. You need to provide a name for your custom login form and then select ‘User Login Form’ as your template.
Next you need to click on the settings tab and then click on ‘Confirmation’ tab. This is where you can define what to do after a successful login.
You can show users a message, redirect them to the page they came from, or redirect them to any other page on your site.
Click on the Save button and now You can add your custom login form to a page by creating a new page and then clicking on the Add Form button.

WP8 - How do I add a share menu?

I was just wondering if there was any way to add a share menu like this: http://puu.sh/5XkRD.jpg
Basically i need it in a way that once the user clicks on the "Share..." menu item in the context menu, the user will be navigated to that share menu where he can select a method to share.
Is anyone able to help me with this?
Use ShareStatusTask: How to use the share status task for Windows Phone.
Use the share status task to enable the user to share a status message on the social network of their choice.
Sample code:
ShareStatusTask shareStatusTask = new ShareStatusTask();
shareStatusTask.Status = "I'm developing a Windows Phone application!";
shareStatusTask.Show();
There is also ShareLinkTask for sharing links: How to use the share link task for Windows Phone.
Use the share link task to enable the user to share a link on the social network of their choice.
Sample code:
ShareLinkTask shareLinkTask = new ShareLinkTask();
shareLinkTask.Title = "Code Samples";
shareLinkTask.LinkUri = new Uri("http://code.msdn.com/wpapps", UriKind.Absolute);
shareLinkTask.Message = "Here are some great code samples for Windows Phone.";
shareLinkTask.Show();

selecting an item opens edit mode in windows 8 apps C#.net

I have a windows 8 app, in which i show the list of students as tiles. When a tile is tapped on, the app bar opens which give the option to edit. My question is; when the tile is tapped, is it fine to go to the Edit window rather than opening the app bar. Does windows 8 app guidelines allow this.
I have gone through the windows 8 guidelines but it has left me confused if its the right way or not.
Thanks in advance.
I think the best way to do this must be that on click of the tile you should open the edit window. And the appbar must have only add button, so that in case the user wants to add a student he can do so through the app bar. I feel this is the correct user experience.

How to remove the Facebook Developer app itself?

I want to remove the developer app from my Facebook account and return to a simple profile. I think its like developer profile currently. and when I click on setting button on the top right corner of the page there are "create and app" and "Manage apps" links which is not available for simple normal accounts.
I also can not rearrange and add my groups to favorites which I think is because of the developer app.
Is there anyone who knows how to remove the developer app?
I searched a lot and there is no remove application option anywhere on developer.facebook.com !!!
please help me.
Go to
https://developers.facebook.com/apps/
Select the app you want to delete, then click edit app then
click on delete app (last option on left pane)
you are done.