Xmonad Status Bar Not Appearing

Hey guys I've been reading through posts and trying to get dzen2 to appear. But it simply doesn't show up.
So I tried using a default status bar
main = xmonad $ defaultConfig {
logHook = dynamicLog
Provided from
http://xmonad.org/xmonad-docs/xmonad-co … icLog.html
and I still do not have any status bars appearing.
Refer Below, changed my current xmonad configuration.
My xmonad.hs is based of thayer's configuration.
Last edited by Jabrick (2011-10-30 22:01:26)

Ok I've finally got a dzen bar to appear.
In my xinitrc where i normally start xmonad
I now have the line
exec xmonad | dzen2
But nothing appears in the bar I've tried several examples and it doesn't seem to work.
Is there something I'm missing?
I do have a ~/.conkyrc file
That looks like
# Conky Config File
# just log everything to the desktop
# Main options (alphabetically)
alignment bl
background yes
default_color 606060
draw_outline no
draw_shades no
double_buffer yes
gap_x 10
gap_y 10
minimum_size 100 100
own_window yes
own_window_type override
own_window_transparent yes
total_run_times 0
update_interval 1
use_xft yes
xftalpha 0.7
xftfont Verdana:size=8
# After TEXT is formatted on screen
TEXT
${tail /var/log/everything.log 20}
This is my  xmonad config file right now....
If I could just get this to work I can finally tinker around.
Been frustrating! Urgh!
--Imports--
import XMonad
--Actions--
import XMonad.Actions.CycleWindows -- classic alt-tab
import XMonad.Actions.CycleWS -- cycle thru WS', toggle last WS
import XMonad.Actions.DwmPromote -- swap master like dwm
--Hooks--
import XMonad.Hooks.DynamicLog -- statusbar
import XMonad.Hooks.EwmhDesktops -- fullscreenEventHook fixes chrome fullscreen
import XMonad.Hooks.ManageDocks -- dock/tray mgmt
import XMonad.Hooks.UrgencyHook -- window alert bells
import XMonad.Hooks.SetWMName -- matlab fix
--Layouts--
import XMonad.Layout.Named -- custom layout names
import XMonad.Layout.NoBorders -- smart borders on solo clients
--Utils--
import XMonad.Util.EZConfig -- append key/mouse bindings
import XMonad.Util.Run(spawnPipe) -- spawnPipe and hPutStrLn
import System.IO -- hPutStrLn scope
import qualified XMonad.StackSet as W -- manageHook rules
main = do
status <- spawnPipe myDzenStatus -- xmonad status on the left
conky <- spawnPipe myDzenConky -- conky stats on the right
xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig
{ modMask = mod4Mask
, borderWidth = 2
, normalBorderColor = "#dddddd"
, focusedBorderColor = "#0000ff"
-- , handleEventHook = fullscreenEventHook
, workspaces = myWorkspaces
, layoutHook = myLayoutHook
, manageHook = manageDocks <+> myManageHook
<+> manageHook defaultConfig
,logHook = myLogHook status
, startupHook= setWMName "LG3D"
`additionalKeysP` myKeys
-- Tags/Workspaces
-- clickable workspaces via dzen/xdotool
myWorkspaces :: [String]
myWorkspaces = clickable . (map dzenEscape) $ ["1","2","3","4","5"]
where clickable l = [ "^ca(1,xdotool key super+" ++ show (n) ++ ")" ++ ws ++ "^ca()" |
(i,ws) <- zip [1..] l,
let n = i ]
-- Layouts
-- the default layout is fullscreen with smartborders applied to all
myLayoutHook = avoidStruts $ smartBorders ( full ||| mtiled ||| tiled )
where
full = named "X" $ Full
mtiled = named "M" $ Mirror tiled
tiled = named "T" $ Tall 1 (5/100) (2/(1+(toRational(sqrt(5)::Double))))
-- sets default tile as: Tall nmaster (delta) (golden ratio)
-- Window management
myManageHook = composeAll
[ className =? "MPlayer" --> doFloat
, className =? "Vlc" --> doFloat
, className =? "Gimp" --> doFloat
, className =? "XCalc" --> doFloat
, className =? "Chromium" --> doF (W.shift (myWorkspaces !! 1)) -- send to ws 2
, className =? "Nautilus" --> doF (W.shift (myWorkspaces !! 2)) -- send to ws 3
, className =? "Gimp" --> doF (W.shift (myWorkspaces !! 3)) -- send to ws 4
, className =? "stalonetray" --> doIgnore
-- Statusbar
myLogHook h = dynamicLogWithPP $ myDzenPP { ppOutput = hPutStrLn h }
myDzenStatus = "dzen2 -w '320' -ta 'l'" ++ myDzenStyle
myDzenConky = "conky -c ~/.conkyrc | dzen2 -x '320' -w '704' -ta 'r'" ++ myDzenStyle
myDzenStyle = " -h '20' -fg '#777777' -bg '#222222' -fn 'arial:bold:size=11'"
myDzenPP = dzenPP
{ ppCurrent = dzenColor "#3399ff" "" . wrap " " " "
, ppHidden = dzenColor "#dddddd" "" . wrap " " " "
, ppHiddenNoWindows = dzenColor "#777777" "" . wrap " " " "
, ppUrgent = dzenColor "#ff0000" "" . wrap " " " "
, ppSep = " "
, ppLayout = dzenColor "#aaaaaa" "" . wrap "^ca(1,xdotool key super+space)· " " ·^ca()"
, ppTitle = dzenColor "#ffffff" ""
. wrap "^ca(1,xdotool key super+k)^ca(2,xdotool key super+shift+c)"
" ^ca()^ca()" . shorten 20 . dzenEscape
-- Key bindings
myKeys = [ ("M1-<Tab>" , cycleRecentWindows [xK_Alt_L] xK_Tab xK_Tab ) -- classic alt-tab behaviour
, ("M-b" , sendMessage ToggleStruts ) -- toggle the status bar gap
, ("M-<Tab>" , toggleWS ) -- toggle last workspace (super-tab)
, ("M-<Right>" , nextWS ) -- go to next workspace
, ("M-<Left>" , prevWS ) -- go to prev workspace
, ("M-S-<Right>", shiftToNext ) -- move client to next workspace
, ("M-S-<Left>" , shiftToPrev ) -- move client to prev workspace
, ("M-r" , spawn "xmonad --restart" ) -- restart xmonad w/o recompiling
, ("M-x" , spawn "chromium" ) -- launch browser
, ("M-S-x" , spawn "chromium --incognito" ) -- launch private browser
, ("C-M1-<Delete>" , spawn "sudo shutdown -r now" ) -- reboot
, ("C-M1-<End>" , spawn "sudo shutdown -h now" ) -- poweroff
, ("<XF86AudioMute>" , spawn "amixer -q sset Master toggle") --Toggle Volume
, ("<XF86AudioLowerVolume>", spawn "amixer -q sset Master 2- unmute") -- lower volume
, ("<XF86AudioRaiseVolume>", spawn "amixer -q sset Master 2+ unmute") -- raise volume
, ("<Print>" , spawn "import -window root `date '+%Y%m%d-%H%M%S'`.png") --Take a Screenshot

Similar Messages

  • Status bar not appearing

    I want to see how much hard drive space I have remaining on my MacBook Pro, so I open Finder and press 'show status bar' and the finder window gets bigger, but the bottom, where the status bar should be, is blank. Is there something I'm missing?

    if you want to find out how much storage space is used up and how much is left....
    try this: click on your apple logo - about this mac - more info - then click on the storage tab.  see image.

  • The status bar not going while download the app.

    The status bar not going while download the app.
    I'm bought the bento from App Store, I finished the payment, but the status bar appeared but doesn't show any progress. Strange!!

    I dont want to Display the popup, I want to Display in Status Bar as a Error Message.
    Like this .
    If I put  message type 'E' its Displaying popup message , MESSAGE ' Duplicate Condition Types Are Not Possible.' TYPE 'E'.
    If I Put messge type 'I' its Displaying in Status Bar .
    Regards,
    Prathap
    Edited by: giri prathap on Sep 13, 2011 12:35 PM

  • Date and time stamp of user status does not appear

    Hi, gurus.
    For a specific transaction type, the date and time stamps for certain user statuses do not appear within the transaction although these missing date/time stamps are captured in the database upon checking by our ABAP.  It seems that this problem started when I added several statuses and rearranged their status numbers in the status profile last year.
    I'd also like to ask if it's really necessary that the statuses within the status profile and date profile should maintained in the same positions. 
    E.g.
    Status Profile                                                                               
    Status No.     ---       Status Code      ---            Short Text                                       
    10            ---                    IP1L                   ---       In Process 1st Level                        
    20            ---                    IP2L                   ---       In Process 2nd Level                          
    Date Profile
    Display Position   ---       Date Type
    1                          ---       In Process 1st Level       
    2                          ---       In Process 2nd Level
    We're going to create and assign a new status profile for the concerned transaction type.  We'll make sure that this status profile is sychronized with the date profile.  Hopefully, the date/time stamps will all be displayed in prospective transactions but the problem on the missing date/time stamps in historical transactions will still remain.
    Pls. help us.
    Thanks in advance,
    Theresa

    I'd also like to ask if it's really necessary that the statuses within the status profile and date profile should maintained in the same positions.
    No

  • Menu bar not appears in some applications.

    Hi, all!
    I have a strange problem and really need help:
    top menu bar not appears, when i start some applications.
    For example, Numbers, keynote, quicktime and, in the end, Finder!
    Problem solves when i replace the .app file of the application with the file from another computer, but it appears again with another application. No errors, no messages, just no menu bar in the top.
    I don't know why it happens and don't know how to diagnose this problem.

    Sometimes something as simple as restarting the computer will resolve system quirks. If that does not work, boot from your install disc & run Repair Disk from the utility menu. To use the Install Mac OS X disc, insert the disc, and restart your computer while holding down the C key as it starts up.
    Select your language.
    Once on the desktop, select Utility in the menu bar.
    Select Disk Utility.
    Select the disk or volume in the list of disks and volumes, and then click First Aid.
    Click Repair Disk.
    Restart your computer when done.
    Repair permissions after you reach the desktop-http://docs.info.apple.com/article.html?artnum=25751

  • Why does the address/status bar not work?

    After updating to 9.0.1, my status bar will not work, or my address bar. If I try to type in anything and press enter into the address bar, nothing happens. Also, I cannot press forward or back as they always remain grayed out. The only way I can get to a website is by pressing home, which is thankfully google. I have to google the url to go to it.
    Remembering now actually, I copied all the folders from the main firefox folder and pasted them into a new install of firefox (I had this problem actually before firefox updated). I was hoping that copying these folders would save my addons and etc. after I downloaded a new firefox and re-installed it. I put the folders back and firefox is still messed up :/
    I just want it to work more Q_Q

    That issue can be caused by an extension that isn't working properly.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • Status bar information appears ABOVE status bar!

    Status bar information (link address on mouseover, page load information, etc.) appears not in status bar, but ABOVE. Please see picture:
    http://www.friedman.ru/pics/mozilla_status.jpg

    You can change that with the Status-4-Evar add-on. With it you can choose to not display any of the status messages, or display them in the add-ons bar or location bar instead.
    https://addons.mozilla.org/firefox/addon/status-4-evar

  • Error Message Displaying the status Bar not like popup message

    Hi all,
    My Requirement is while creating  invoice if pricing conditons is repeted , system should thorough the error message like (uplicate Condition Types Are Not Possible  in the status Bar but Im getting poup Error message So I want to display the same message in the status Bar.
    Please Help me any one.
    Regards,
    Prathap

    I dont want to Display the popup, I want to Display in Status Bar as a Error Message.
    Like this .
    If I put  message type 'E' its Displaying popup message , MESSAGE ' Duplicate Condition Types Are Not Possible.' TYPE 'E'.
    If I Put messge type 'I' its Displaying in Status Bar .
    Regards,
    Prathap
    Edited by: giri prathap on Sep 13, 2011 12:35 PM

  • Download Status Bar Not Working

    Hi. When I am downloading iStore songs, the status bar stays blank, and does not display the active marker bar showing the file progress. It has never worked. Is this famiiar to anyone? The downloads seem to be fine in every other respect. Thanks!

    It seems ever since i downloaded the latest version
    of iTunes, my status bar has stopped working. I
    can't seem to be able to control the volume from
    iTunes either. I have to control it from my
    keyboard. When playing songs, the status bar does
    nothing and even the name of the song does not get
    updated on the status bar. Also the equalizer visual
    thingy (dynamic range monitor or whatever it's
    called) does not do a thing. And finally,
    downloading songs has become painfully slow. What I
    used to download in 20 to 30 seconds now takes 3
    minutes!
    Anyone know what's going on? Anyone else having
    these problems?
    I am having the same exact problems after downloading 7.0.2. Sorry I have found no solution as yet.

  • Windows task bar not appearing while in itunes full screen

    My Window 7 task bar does not appear while in itunes full screen after updating to itunes 10.5.  I checked that it functions correctly with all of my other programs and it used to work fine in previous versions of itunes.  It is frustrating when I am trying to check battery power, access my wi-fi hard drive, etc. I have been pressing the windows button to pull up the start menu then I can see whaat I need but this seems to be only a work around.  Is there some sort of a check box or something I may have missed in itunes? Does anyone else have this issue?

    If it worked OK in the test library give this a try:
    Starting over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1. Open the library package like this.
    2. Launch iPhoto with the Option key held down and, when asked, select the option to create a new library.
    3. Drag the subfolders of the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from the open iPhoto Library package into the open iPhoto window a few at a time.
    This will create a new library with the same Events (but not necessarily the same Event names) as the original library but will not keep the metadata, albums, books slideshows and other projects.
    Note:  your current library will be left untouched for further attempts at a fix if so desired.
    OT

  • Lumia 920 status bar not working

    I am unable to pull down my status bar or switch my phone to silent. I thought maybe the screen was broken but I am able to touch my Facebook notifications icon which is also at the top of the screen and it works. Also am unable to retrieve text messages by pressing the bar that pops up when I'm in an app or web browser. I have to close it out, go to the home screen and open the text message icon to retrieve it. I have had the phone for 5 days. I didn't even realize I was suppose to be able to access the status bar or switch my phone to silent or retrieve messages by touching the top until I spoke to another Lumia owner.

    Well from my experience, if I receive an sms in the middle of using an app, say for instance, IE, tapping on the notification does bring me to the message. Can confirm if this applies to all apps though. Even if not, there is no need to close the app. Just tap the windows icon at the bottom of the screen and that should bring you back to the start screen without closing the app. 
    Tapping the top of the screen bring up the icons at the top only work from the start screen but there do not pull down.

  • Z2 Status bar not pulling down

    Hi everyone, hoping someone can help.
    As the subject says - the status/notification bar (or whatever its called) is not 'pulling down'. I've switched phone off and on a few times. Pressed the little red button next to sim card slot....nothing is working. 
    Any ideas/solutions appreciated.
    Many thanks

    I have the same probleme with my new xperia z2 I ve just bought it 5 days ago and the notification /status bar isnot sliding down I even reinstalled the software using sus but nothing helped. this is the worst phone I ve evwer seen in just 5 days I have experienced water inside the camera lens beacuse of the gaps and ridiculous heat issue in each task and the camera really sucked i cant do anything beacuse of heating really disappointed from sony I had xperia p and it was much better than this s**t.excuse me for my manners but I am really mad.

  • How do I get the status bar to appear in FF4.1?

    I upgraded to FF4.1 and discovered the status bar had disappeared and a few add-ons no longer worked :/
    After discovering this I re-installed FF3.
    How can I get the status bar back?
    TYIA
    Max

    See step #10 installing the Status-4-Evar extension in the following ...
    You can make Firefox 4.0.1 look like Firefox 3.6.17, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)]

  • App bar not appearing when I tap the ellipses

    I'm trying to get my app bar to appear when I tap the 3 dots at the bottom of the screen, but when I do so it doesn't happen. Anyone know
    why & how this problem can be rectified?
    MainPage.xaml
    <Page
    x:Name="pageRoot"
    x:Class="HP.MainPage"
    DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Exits_Expert_London_Lite.Lines_and_Stations.WC"
    xmlns:common="using:Exits_Expert_London_Lite.Common"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:q42controls="using:Q42.WinRT.Controls"
    mc:Ignorable="d">
    <Grid Background="Black">
    <Grid.ChildrenTransitions>
    <TransitionCollection>
    <EntranceThemeTransition/>
    </TransitionCollection>
    </Grid.ChildrenTransitions>
    <Grid Name="CustomAppBarRoot" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" Loaded="CustomAppBarRoot_OnLoaded"
    ManipulationMode="TranslateY"
    ManipulationDelta="CustomAppBarRoot_OnManipulationDelta"
    ManipulationCompleted="CustomAppBarRoot_OnManipulationCompleted"
    Tapped="CustomAppBarRoot_OnTapped">
    <Grid.RenderTransform>
    <TranslateTransform X="0" Y="0"/>
    </Grid.RenderTransform>
    <Grid.Background>
    <SolidColorBrush Color="Black" Opacity="0.5"></SolidColorBrush>
    </Grid.Background>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <TextBlock Name="DotsTextBlock" FontSize="28" Text="..." HorizontalAlignment="Right" VerticalAlignment="Top"
    Margin="0 0 15 0" Tapped="DotsTextBlock_OnTapped" Width="50" Height="50" TextAlignment="Center">
    <TextBlock.RenderTransform>
    <TranslateTransform Y="0" X="11"/>
    </TextBlock.RenderTransform>
    </TextBlock>
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    </Grid>
    <Hub>
    <Hub.Header>
    <!-- Back button and page title -->
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="80"/>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Button x:Name="backButton" Margin="-1,-1,39,0" Command="{Binding NavigationHelper.GoBackCommand, ElementName=pageRoot}"
    Style="{StaticResource NavigationBackButtonNormalStyle}"
    VerticalAlignment="Top"
    AutomationProperties.Name="Back"
    AutomationProperties.AutomationId="BackButton"
    AutomationProperties.ItemType="Navigation Button"/>
    <TextBlock x:Name="pageTitle" Text="Page name" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
    IsHitTestVisible="false" TextWrapping="NoWrap" VerticalAlignment="Top"/>
    </Grid>
    </Hub.Header>
    <HubSection Width="800" Padding="40,50,0,0">
    <HubSection.Header>
    <StackPanel>
    <TextBlock Text="hub section 1" Style="{StaticResource HeaderTextBlockStyle}"/>
    </StackPanel>
    </HubSection.Header>
    <DataTemplate>
    <Grid>
    <StackPanel>
    <TextBlock Style="{StaticResource SubheaderTextBlockStyle}" Margin="0,0,0,5" TextWrapping="Wrap">
    <Run Text="Hello World"/>
    </TextBlock>
    </StackPanel>
    </Grid>
    </DataTemplate>
    </HubSection>
    </Hub>
    </Grid>
    </Page>
    MainPage.cs
    using HP.Common;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Media.Animation;
    using Windows.UI.Xaml.Navigation;
    // The Hub Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=321224
    namespace HP
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    this.Tapped += Page_OnTapped;
    private void Page_OnTapped(object sender, TappedRoutedEventArgs tappedRoutedEventArgs)
    if ( isAppBarShown )
    HideCustomAppBar();
    #region custom app bar
    private Storyboard hideCustomAppBarStoryboard;
    private Storyboard showCustomAppBarStoryboard;
    private Size appBarSize;
    private Size appBarButtonsSize;
    private bool isAppBarShown = true;
    private void CustomAppBarRoot_OnLoaded(object sender, RoutedEventArgs e)
    appBarSize = new Size(CustomAppBarRoot.ActualWidth, CustomAppBarRoot.ActualHeight);
    appBarButtonsSize = new Size(ButtonsStackPanel.ActualWidth, ButtonsStackPanel.ActualHeight);
    InitializeStoryboards();
    HideCustomAppBar();
    private void ShowCustomAppBar()
    isAppBarShown = true;
    showCustomAppBarStoryboard.Begin();
    private void HideCustomAppBar()
    isAppBarShown = false;
    hideCustomAppBarStoryboard.Begin();
    private void DotsTextBlock_OnTapped(object sender, TappedRoutedEventArgs e)
    if (isAppBarShown)
    HideCustomAppBar();
    else
    ShowCustomAppBar();
    private void InitializeStoryboards()
    hideCustomAppBarStoryboard = new Storyboard();
    showCustomAppBarStoryboard = new Storyboard();
    var showDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CircleEase() {EasingMode = EasingMode.EaseInOut},
    To = 0,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    var hideDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CubicEase() {EasingMode = EasingMode.EaseInOut},
    To = appBarButtonsSize.Height,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    hideCustomAppBarStoryboard.Children.Add(hideDoubleAnimation);
    showCustomAppBarStoryboard.Children.Add(showDoubleAnimation);
    Storyboard.SetTarget(hideCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTarget(showCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTargetProperty(showCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    Storyboard.SetTargetProperty(hideCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    #endregion
    private void CustomAppBarRoot_OnManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
    var translateTransform = (CustomAppBarRoot.RenderTransform as TranslateTransform);
    double newY = e.Delta.Translation.Y + translateTransform.Y;
    translateTransform.Y = Math.Max(0, Math.Min(newY, appBarButtonsSize.Height));
    private void CustomAppBarRoot_OnManipulationCompleted(object sender, ManipulationCompletedRoutedEventArgs e)
    // if small appbar-position changes are made app bar should back to previous position, just like in windows phone
    if (Math.Abs(e.Cumulative.Translation.Y) < 20)
    isAppBarShown = !isAppBarShown;
    if (!isAppBarShown)
    ShowCustomAppBar();
    else
    HideCustomAppBar();
    private void CustomAppBarRoot_OnTapped(object sender, TappedRoutedEventArgs e)
    e.Handled = true; // prevents raising Page.Tapped event so appbar won't be closed on AppBar-area tap

    When I debug, the app runs as normal and doesn't crash when I tap the elipses hence nothing happens.
    Does your tapped handler get called?
    It looks like your buttons stack panel may be on top of your ellipses. Try reversing that so the ellipses are on top:
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    <TextBlock x:Name="DotsTextBlock" Text="&#xe10c;" FontSize="14" FontFamily="Segoe UI Symbol" HorizontalAlignment="Right" VerticalAlignment="Top"
    Tapped="DotsTextBlock_OnTapped">
    </TextBlock>
    You can also use the Segoe UI Symbol "More" character to match the standard more ellipses rather than trying to implement your own. A step further would be to make it a button so that it has proper clickable semantics and will work properly with the
    keyboard, although for this specific use you can get away without it since you'll provide standard Windows+Z AppBar behaviour.

  • Status Field Not appearing in Transaction

    Hi all
    We have configure all stuff related to Status management
    in IMG.But we are unable to see the Field "STATUS" when
    we run Transaction.Please guide us where are we missing?
    your response will rewarded with points
    Regard
    imran

    Hi,
    There could be only one reason for this. Your user status is not attached to the status profile in SPRO.
    Please check your SPRO settings for Status Management again.
    <b>Reward points if it helps.</b>

Maybe you are looking for

  • Oracle 10g Express edition,can't visit database homepage

    I have installed Oracle 10g Express edition without error meggage, It seems goes well ,but when I want to visit my database_homepage on http://127.0.0.1:8080/apex, I see this: The page cannot be displayed There is a problem with the page you are tryi

  • WLSOAPFaultException: MustUnderstand header not processed

    WLSOAPFaultException: MustUnderstand header not processed '{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security' I have deployed my BSSV to localhost WLS successfully and I can call the published BSSV method fro

  • C7 - e-mail -i need a new mail-konto where i can ...

    hello, when i want to check my mails via my c7. i have a domain with a special mail-entry and a special outgoing mail server. when i want to add a new mailbox on my c7 i can only choose such as gmail.com and so on... I have one "konto" for voice mail

  • Logic 9.1.5 using more CPU in 64 bit mode

    Yesterday updated to Logic 9.1.5 Have opened up projects in both 32 bit and 64 bit mode (but only 32 bit kernel as my mac pro is too old for 64 bit kernel). Projects in 64 bit mode spike the CPU meter, and result in clicks and pops during playing. Qu

  • How to get a text between two XML tags?

    Hello everybody! I've got a problem! How can I extract a text that is between tags, like <myTag> My text </myTag> I have no problem to get the attributes inside the tags, however, i don't know how to get some text that is between tags. Here is my xml