

Press the Windows key + R to open the Run dialog box, type regedit and hit Enter.

Method 2: Make Windows 10 Display Full Path in Explorer Title Bar Using Registry Editor As you see, the File Explorer should now show the full file path instead of the folder name in the title bar. Log off your user or restart the computer. Locate and tick the checkbox named “ Display the full path in the title bar“. Click it to open the Folder Options dialog. You’ll see the the Options button on the right-hand side. Method 1: Make Windows 10 Display Full Path in Explorer Title Bar Using Folder Options In this tutorial we’ll show you 2 ways to make Windows 10 display full path (file location) in the title bar of File Explorer. Sometimes you might need to know the absolute path of the location you are currently in. Private default, Windows 10 will display the folder name alone in the title bar of File Explorer. This.Load += new System.EventHandler(this.Form1_Load) This.AutoScaleDimensions = new (6F, 13F) += new System.EventHandler(this.MinClick) += new System.EventHandler(this.MaxClick) += new System.EventHandler(this.ExitClick) / the contents of this method with the code editor. / Required method for Designer support - do not modify #region Windows Form Designer generated code Protected override void Dispose(bool disposing) / true if managed resources should be disposed otherwise, false. This.WindowState = FormWindowState.Minimized Private void MinClick(object sender, EventArgs e) This.WindowState = FormWindowState.Normal This.WindowState = FormWindowState.Maximized Private void MaxClick(object sender, EventArgs e) Private void ExitClick(object sender, EventArgs e) Private void Form1_Load(object sender, EventArgs e)įormBorderStyle = .None Put those 3 lines of code into the form's OnLoad event and you should have a nice 'floating' form that is draggable with a thin border (use FormBorderStyle.None if you want no border). This.FormBorderStyle = FormBorderStyle.FixedSingle Now to get rid of the title bar but still have a border combine the code from the other response:

If (message.Msg = WM_NCHITTEST & (int)message.Result = HTCLIENT) Protected override void WndProc(ref Message message) Just add it right before the constructor (the method that calls InitializeComponent() Also add this bit of code to your form to allow it to be draggable still.
