- Height of Suspended Kitchen Cabinets
- Information request
- Discover our collections
- Kitchen sink by windows
- Users who have contributed to this file
- 33 Popular Kitchen Window above Sink Ideas
- Kitchen Window above Sink
- 1. Wooden window sills
- The steps for choosing a window frame made from wood are as follows;
- 2. Aluminum window sills
- Here are aluminum sundries;
Height of Suspended Kitchen Cabinets
If the sink is installed below a window, the householder can look outside and washing up becomes less of a chore and thus less tiring. One often gives up on the idea of the functionality and beauty of a sink below the window because of the problem of where to put the dish drainer (superfluous if a dishwasher is installed). Valcucine suggests two solutions: a dish drainer in the back section or a dish drainer in a pullout rack inside a base unit near the sink base unit. If the sink is fitted below the window, it will be necessary to make sure that the windows do not interfere with the tap. This can be ensured in three ways:
A — by installing horizontally or vertically-sliding windows;
B — by fitting the mixer tap exactly in the space where the hinged windows open;
C — by installing a fold-down tap if B is not possible. In this case a height of 13cm, corresponding to the height of the folded tap, must be calculated when deciding the height of the window sill.
Information request
Discover our collections
Via L. Savio, 11
(GPS: Via Arturo Malignani, 5)
33170 Pordenone (Italy)
+39 0434 517911
+39 0434 572344
Kitchen sink by windows
7 contributors
Users who have contributed to this file
import ast |
import os |
import sys |
from pathlib import Path |
from kivy . core . window import Window |
from kivy . factory import Factory # NOQA: F401 |
from kivy . lang import Builder |
from kivy . loader import Loader |
from libs . baseclass . dialog_change_theme import ( |
KitchenSinkDialogChangeTheme , |
KitchenSinkUsageCode , |
) |
from libs . baseclass . list_items import ( # NOQA: F401 |
KitchenSinkOneLineLeftIconItem , |
) |
from kivymd import images_path |
from kivymd . app import MDApp |
os . environ [ «KIVY_PROFILE_LANG» ] = «1» |
if getattr ( sys , «frozen» , False ): # bundle mode with PyInstaller |
os . environ [ «KITCHEN_SINK_ROOT» ] = sys . _MEIPASS |
else : |
sys . path . append ( os . path . abspath ( __file__ ). split ( «demos» )[ 0 ]) |
os . environ [ «KITCHEN_SINK_ROOT» ] = str ( Path ( __file__ ). parent ) |
# os.environ[«KITCHEN_SINK_ROOT»] = os.path.dirname(os.path.abspath(__file__)) |
os . environ [ «KITCHEN_SINK_ASSETS» ] = os . path . join ( |
os . environ [ «KITCHEN_SINK_ROOT» ], f»assets < os . sep >« |
) |
Window . softinput_mode = «below_target» |
class KitchenSinkApp ( MDApp ): |
def __init__ ( self , ** kwargs ): |
super (). __init__ ( ** kwargs ) |
self . theme_cls . primary_palette = «Teal» |
self . dialog_change_theme = None |
self . toolbar = None |
self . data_screens = <> |
Loader . loading_image = f» < images_path >transparent.png» |
def build ( self ): |
Builder . load_file ( |
os . path . join ( |
os . environ [ «KITCHEN_SINK_ROOT» ], «libs» , «kv» , «list_items.kv» |
) |
) |
return Builder . load_file ( |
os . path . join ( |
os . environ [ «KITCHEN_SINK_ROOT» ], «libs» , «kv» , «start_screen.kv» |
) |
) |
def show_dialog_change_theme ( self ): |
if not self . dialog_change_theme : |
self . dialog_change_theme = KitchenSinkDialogChangeTheme () |
self . dialog_change_theme . set_list_colors_themes () |
self . dialog_change_theme . open () |
def on_start ( self ): |
«»»Creates a list of items with examples on start screen.»»» |
Builder . load_file ( |
os . path . join ( |
os . environ [ «KITCHEN_SINK_ROOT» ], |
«libs» , |
«kv» , |
«dialog_change_theme.kv» , |
) |
) |
with open ( |
os . path . join ( os . environ [ «KITCHEN_SINK_ROOT» ], «screens_data.json» ) |
) as read_file : |
self . data_screens = ast . literal_eval ( read_file . read ()) |
data_screens = list ( self . data_screens . keys ()) |
data_screens . sort () |
for name_item_example in data_screens : |
self . root . ids . backdrop_front_layer . data . append ( |
< |
«viewclass» : «KitchenSinkOneLineLeftIconItem» , |
«text» : name_item_example , |
«icon» : self . data_screens [ name_item_example ][ «icon» ], |
«on_release» : lambda x = name_item_example : self . set_example_screen ( |
x |
), |
> |
) |
def set_example_screen ( self , name_screen ): |
manager = self . root . ids . screen_manager |
if not manager . has_screen ( |
self . data_screens [ name_screen ][ «name_screen» ] |
): |
name_kv_file = self . data_screens [ name_screen ][ «kv_string» ] |
Builder . load_file ( |
os . path . join ( |
os . environ [ «KITCHEN_SINK_ROOT» ], |
«libs» , |
«kv» , |
f» < name_kv_file >.kv» , |
) |
) |
if «Import» in self . data_screens [ name_screen ]: |
exec ( self . data_screens [ name_screen ][ «Import» ]) |
screen_object = eval ( self . data_screens [ name_screen ][ «Factory» ]) |
self . data_screens [ name_screen ][ «object» ] = screen_object |
if «toolbar» in screen_object . ids : |
screen_object . ids . toolbar . title = name_screen |
manager . add_widget ( screen_object ) |
code_file = os . path . join ( |
os . environ [ «KITCHEN_SINK_ROOT» ], |
«assets» , |
«usage» , |
self . data_screens [ name_screen ][ «source_code» ], |
) |
with open ( code_file , «r» ) as f : |
self . sample_code = f . read () |
self . screen_name = name_screen |
self . website = self . data_screens [ name_screen ][ «more_info» ] |
manager . current = self . data_screens [ name_screen ][ «name_screen» ] |
def back_to_home_screen ( self ): |
self . root . ids . screen_manager . current = «home» |
def switch_theme_style ( self ): |
self . theme_cls . theme_style = ( |
«Light» if self . theme_cls . theme_style == «Dark» else «Dark» |
) |
self . root . ids . backdrop . ids . _front_layer . md_bg_color = [ 0 , 0 , 0 , 0 ] |
def show_code ( self ): |
if self . theme_cls . device_orientation == «landscape» : |
code = KitchenSinkUsageCode ( |
code = self . sample_code , |
title = self . screen_name , |
website = self . website , |
) |
code . open () |
KitchenSinkApp (). run () |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
33 Popular Kitchen Window above Sink Ideas
The window is a complement to the kitchen room, so that reflected sunlight can enter and illuminate the ruins.
In addition, the air outside can enter the room when the window is opened so that the space in the room can illuminate in the morning and afternoon without the help of electric tools and air can enter naturally from nature.
Kitchen window design is a vital thing because good air circulation and lighting will come with the right design and window location.
Each window has a variety of different shapes and motifs, which of course can have a purpose as well as beauty and uniqueness that can change the appearance of the kitchen room.
However, even though the window design is good, if it is not placed in the right place and in the right corner, it will also be useless.
Therefore, by installing the right window, we can carry out activities in the kitchen with a calm and comfortable atmosphere.
In choosing the most appropriate kitchen window position, you need to determine the main purpose of installing a window in the kitchen.
Most, homeowners put kitchen windows near stoves or dining tables that aim to reduce the amount of smoke produced when cooking.
Kitchen Window above Sink
Windows basically functions to get in and out of air and light while in the kitchen windows are needed because when cooking is certainly a lot so it requires a large airway and that is where the important role of the window other than as a place of entry of sunlight.
Not only near the stove, but some homeowners also install kitchen windows above the sink.
This position is very appropriate because we can open it easily, with just one finger.
Another advantage of putting a window above the sink is that it makes us feel comfortable when washing dishes while breathing in the air because washing dishes is an activity that is associated with dirty eating utensils (especially if there are many dirty glasses and plates there).
When we have decided to install a window above the sink, then we must determine the design of the window used and the sliding window is a perfect choice.
Because they are opened in sliding lanes, so they are very easy to open.
Apparently, they do more than just open easily, sliding windows are similar to double hanging windows facing their sides, they give you great control over air circulation.
The kitchen window can be installed because there is a sill. Most, window sills (or frames) are made of wood or aluminum.
Each of these ingredients has tips so that the kitchen window is installed perfectly. These tips are as follows:
1. Wooden window sills
The steps for choosing a window frame made from wood are as follows;
a. Recognize in advance the properties of wood, whether coarse-textured, tight wood fibers or fused, hardwood or not, resistance to cracks, age, and color of wood, and ability to absorb water or not.
b. Adjust the function of the window with the type of wood used. That is to say that the performance of the hinge corresponds to the weight of the wood on the field and the frame of the shutters.
c. Choose wood paint that is durable, can withstand UV rays, termites, anti-fungal, and waterproof.
d. Do finishing that makes it easier for wood to be cleaned from fat or food stains, for example with melamine.
2. Aluminum window sills
Here are aluminum sundries;
a. Aluminum windows have a more perfect resistance, but still strong as wood. The thicker the aluminum, the more quality. The application of aluminum to a window is easy and difficult.
b. Leaking of aluminum windows, especially in the sills and shutters, can be avoided as long as the installation and application of silicone gel to the joint (between the edge of the frame and the wall is done correctly).
c. For shutters, make sure the two rubber system installed on the frame is perfectly installed. In addition, the glass cover trim on the frame must be on the inside of both windows to prevent leakage.
d. In terms of material specifications, aluminum is classified as waterproof, and rust-resistant. The appearance is also more diverse There are plain without finishing and there are already having various finishing in the form of ordinary anodizing finishing in aluminum), white powder coating, and wood finish.
e. Aluminum window treatments are quite easy, such as using cornstarch used as a cleaner. Thus, this material is very suitable for kitchen windows.
f. Unlike wood which must be given special treatment to be resistant to termite attacks, aluminum is a material that is resistant to termite attacks.
DISCLAIMER: This image is provided only for personal use. If you found any images copyrighted to yours, please contact us and we will remove it. We don’t intend to display any copyright protected images.